<!--Hide JavaScript from Java-Impaired Browsers
// fixes a Netscape 2 and 3 bug
function getFullYear(d) { // d is a date object
 yr = d.getYear();
 if (yr < 1000)
  yr+=1900;
 return yr;
}
document.write("<table border=0 cellspacing=0 cellpadding=0 width=100%>"); // don't delete this line

/* Simply delete the forms of date or time 
   you don't wish to use below. */

document.write("<TR><TD VALIGN=bottom ><B>&nbsp;&nbsp;&nbsp;Today is "+isnDays[today.getDay()]
+", "+isnMonths[today.getMonth()]+" "+today.getDate()+", "
+getFullYear(today)+"</B>");


document.write("</table>"); // don't delete this line

// End hiding -->
