Could someone please tell me hot to add a scrollbar to the script in the oldstyle calendar. Here is the script for the original oldstyle
<STYLE>
A { text-decoration:none; }
A:hover { text-decoration:underline; }
.thinborder { border-color:#666666; border-style:solid; border-width:1px; }
</STYLE>
<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('<%=$CGI_URL_QUERYSTRING%>popup=1&template=event_detail.html&event_id='+id, 'event_details', featureString);
}
</SCRIPT>
I would like it to scroll when someone clicks on the event.