function todaysDate() {
var today = new Date();
var month = today.getMonth();
var day = today.getDate();
M = new Array
("January","February","March","April","May","June","July","August","September","October","November","December");

document.write("<font face=\"times,times\">");
document.write(M[month] + " " + day + ", " + 2007);
document.write("</font>");
}



function doColor (item,color)  {
item.style.color = color;
}

function undoColor (item,color)  {
item.style.color = color;
}

