<!-- 
function today() {

var now = new Date();
var m = now.getMonth();
var w = now.getDay();

if (m == 0)
    m = "Jan.";
else if (m == 1)
    m = "Feb.";
else if (m == 2)
    m = "March";
else if (m == 3)
    m = "April";
else if (m == 4)
   m = "May";
else if (m == 5)
    m = "June";
else if (m == 6)
    m = "July";
else if (m == 7)
    m = "Aug.";
else if (m == 8)
    m = "Sept.";
else if (m == 9)
    m = "Oct.";
else if (m == 10)
    m = "Nov.";
else if (m == 11)
    m = "Dec.";

if (w  == 0)
    w  = "Sunday";
else if (w  == 1)
    w  = "Monday";
else if (w  == 2)
    w  = "Tuesday";
else if (w  == 3)
    w  = "Wednesday";
else if (w  == 4)
   w  = "Thursday";
else if (w  == 5)
    w  = "Friday";
else if (w  == 6)
     w = "Saturday";

document.write(w + ", " + m + " " + now.getDate());
}

<!-- 
function newdate() {
return true;
}


//Function to open a new window
function openNewWind(thisUrl, windowName, thisWidth, thisHeight) {
	popWin = window.open(thisUrl,windowName,"scrollbars=no,width=664,height=105,menubar=no,resizable=no,toolbar=no,status=yes");
}

//Function to open a new YG window
function openNewYGWind(thisUrl, windowName) {
	popWin = window.open(thisUrl,windowName,"scrollbars=yes,width=600,height=600,menubar=no,resizable=yes,toolbar=no,status=yes");
}

function instructions(url) {
	document.write("More information? <a href=\"JavaScript:openNewWindow('" + url + "')\" class=\"white\">Click here</a>.");
}

function instructionsblack(url) {
	document.write("More information? <a href=\"JavaScript:openNewWindow('" + url + "')\">Click here</a>.");
}

function openNewWindow(thisUrl) {
	window.open(thisUrl,"windowName","scrollbars=yes,width=570,height=200,menubar=no,resizable=yes,toolbar=no,status=no,body onLoad=window.focus()");
}

function openNewZipFinderWindow(url) 
{
window.open(url,"zipfinder","scrollbars=yes,width=520,height=380,menubar=no,resizable=yes,toolbar=no,statusbar=no, onLoad=window.focus();");
            return false;
}



// -->