//// Hide right side menu column from// script enabled browsers//function collapseRightMenu () {    var isNSModern = (document.getElementById && (! document.all));    var isIE = (document.all);		if (isNSModern) {		    // Modern Netscape/Mozzilla		    document.getElementById("rightmenu").style.display = "none";		}		else if (isIE) {		    // IE, Opera		    document.all["rightmenu"].style.display = "none";		}}//// Activate the printer-friendly alternate stylesheet//function activatePrinterStylesheet () {    var i, a;    for(i = 0; (a = document.getElementsByTagName('link')[i]); i++) {        if (a.getAttribute('rel').indexOf('style') != -1 && a.getAttribute('title')) {            a.disabled = true;            if (a.getAttribute('title') == 'printer')                a.disabled = false;        }    }}//// Open the current URL in a new, printer-friendly window//function openPrintWindow () {    var newLocation = document.location;    var wndPrint = window.open(newLocation, 'printerfriendly', 'menubar=no,scrollbars=yes,status=no,resizable=yes,directories=no,location=no,toolbar=no,copyhistory=no');    if (wndPrint && (! wndPrint.name))        wndPrint.name = "printerfriendly"; }//// Opens an archive page in  new window//function openArchiveWindow (srcfile) {    window.open(srcfile, 'archive', 'width=875,menubar=no,scrollbars=yes,status=yes,resizable=yes,directories=no,location=no,toolbar=no,copyhistory=no');}//// Perform basic page initialization//function init () {    collapseRightMenu();}//// Perform initialization of the calendar.html page//function calendarInit () {    init();    // If this window is the printer-friendly window,    // activate its print stylesheet.    if (window.name.indexOf('printerfriendly') != -1) {    	activatePrinterStylesheet();    }}