<!--
today = new Date();

if (today.getYear() <2000)
{
document.write(today.getYear()+1900);
}
else
{
document.write(today.getYear());
}
document.write('-');
document.write(today.getMonth()+1);
document.write('-');
document.write(today.getDate());
document.write(', ');

if (today.getDay()==0)
{
 document.write('SUN');
}
else if (today.getDay()==1)
{
 document.write('MON');
}
else if (today.getDay()==2)
{
 document.write('TUE');
}
else if (today.getDay()==3)
{
 document.write('WED');
}
else if (today.getDay()==4)
{
 document.write('THU');
}
else if (today.getDay()==5)
{
 document.write('FRI');
}
else if (today.getDay()==6)
{
 document.write('SAT');
}
document.write('.');
//-->

