function alertDate()
{
 alert("Year = "+document.ccalendar.getYear()+", month="+document.ccalendar.getMonth()+", day="+document.ccalendar.getDay());
}

function popwindow()
{
testwindow= window.open ("popmapIframe.html", "mywindow",
    "status=0,location=0,scrollbars=0,width=400,height=300");
testwindow.moveTo(0,0);
}

//--------------- LOCALIZEABLE GLOBALS ---------------
var d=new Date();
var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December");
//Ensure correct for language. English is "January 1, 2004"
var TODAY = monthname[d.getMonth()] + " " + d.getDate() + ", " + d.getFullYear();
//---------------   END LOCALIZEABLE   ---------------


