var calendar1; /*must be declared in global scope*/ 
/*put the calendar initializations in the window's onload() method*/ 
window.onload = function() { 
calendar1 = new Epoch('cal1','flat',document.getElementById('calendar_container'),false); 
}; 