todayDate = new Date();
date = todayDate.getDate();
month= todayDate.getMonth();

thismonth= new Array(12)
thismonth[0]= "Jan"
thismonth[1]= "Feb"
thismonth[2]= "Mar"
thismonth[3]= "Apr"
thismonth[4]= "May"
thismonth[5]= "Jun"
thismonth[6]= "Jul"
thismonth[7]= "Aug"
thismonth[8]= "Sep"
thismonth[9]= "Oct"
thismonth[10]= "Nov"
thismonth[11]= "Dec"

year= todayDate.getYear();
document.write("<span style='border-left:2px solid #9D9D9D;padding-left:16px;font-size:11px;color:#9D9D9D;font-family:Arial'>")
if (todayDate.getDay() == 5) document.write("FRIDAY")
if (todayDate.getDay() == 6) document.write("SATURDAY")
if (todayDate.getDay() == 0) document.write("SUNDAY")
if (todayDate.getDay() == 1) document.write("MONDAY")
if (todayDate.getDay() == 2) document.write("TUESDAY")
if (todayDate.getDay() == 3) document.write("WEDNESDAY")
if (todayDate.getDay() == 4) document.write("THURSDAY")
document.write("</span>")

document.write("<span style='margin-left:14px;border-left:6px double #DCDCDC;padding-left:6px;font-size:11px;color:#9D9D9D;font-family:Arial;line-height:11px'>")

document.write(thismonth[month])

document.write("&nbsp;&nbsp;");
document.write(date);
document.write("</span>");
document.write("<span style='margin-left:14px;border-left:6px double #DCDCDC;padding-left:5px;font-size:11px;color:#9D9D9D;font-family:Arial;line-height:11px'>")

if(navigator.appName == "Netscape")
{
document.write(1900+year);
}
if(navigator.appVersion.indexOf("MSIE") != -1)
{
document.write(year);
}

document.write("</span>");
