function y2k(number) { 
    return (number < 1000) ? number + 1900 : number; 
}
// -----------------------------------------------------------------------------------------
// Obtain Current Date and extract parts into there own variables
var today = new Date();
var month = today.getMonth();
var day   = today.getDate();
var year  = y2k(today.getYear());
// -----------------------------------------------------------------------------------------

// Begin Open popup window with calendar
function newWindow01() {
    mywindow=open('/service-centers/msu/cal/cal.asp?date=01','myname','resizable=no,status=yes,width=350,height=325');
    mywindow.location.href = '/service-centers/msu/cal/cal.asp?date=01';
    if (mywindow.opener == null) mywindow.opener = self;
}
function restart01() {
	document.getElementById("date").value = '' + month - 0 + 1 + '/' + day + '/' +  year;
    mywindow.close();
}
// End Open popup window with calendar
