
<!--
function popCal(){
        // Set up Page Colors & Table
        var theMonths=new Array("JANUARY","FEBRUARY","MARCH","APRIL","MAY","JUNE","JULY","AUGUST","SEPTEMBER","OCTOBER","NOVEMBER","DECEMBER");
       today = new Date();
       curmonth = "#" + theMonths[today.getMonth()];
       theCalendar='Calendar/calendar.html"+curmonth+"'       
       popup = window.open("Calendar/calendar.html","popDialog","width=300,height=270,top=0,left=0")
      
}

//-->