// JavaScript Document

<!--
var mydate = new Date;
var month = new Array( "JANUARY", "FEBRUARY", "MARCH", "APRIL", "MAY", "JUNE", "JULY", "AUGUST", "SEPTEMBER", "OCTOBER", "NOVEMBER", "DECEMBER" );
var date = mydate.getDate();

document.write( month[mydate.getMonth()] + "&nbsp;" + date );
if( (date % 10) == 1) {
    document.write();
}

document.write( ",&nbsp;" + mydate.getFullYear() );
// -->

<!--
function MM_popupMsg(msg) { //v1.0
  alert(msg);
}
//-->

