The code responsible for the Event View popup is:
<SCRIPT LANGUAGE="JavaScript">
function showDetails(id) {
var width=500;
var height=500;
var x = Math.round((screen.availWidth - width) / 2);
var y = Math.round((screen.availHeight - height) / 2);
var featureString = 'left='+x+',top='+y+',width='+width+',height='+height;
var details = window.open('http://www.wwwroot4.net/~eac/cgi-bin/calendar.pl?popup=1&template=event_detail.html&event_id='+id, 'event_details', featureString);
}
</SCRIPT>
I don't know what template it is in as you look to be using the Old Style templates which I'm not familiar with. You can change the popup size in that code and/or add the scroll bars options to the featureString variable.
Dan O.
------------------
[This message has been edited by DanO (edited February 06, 2003).]