<!--
// Hide from non-Javascript browsers
// The following fragment is an example of displaying a different
// string to the user depending on the time of day.
//
d = new Date();
hour = d.getHours();

<!-- START HIDE
print1="";
print2="";
print3="";
today = new Date();
weekday = today.getDay();
if (weekday == 6) print1='Sat,';
if (weekday == 0) print1='Sun,';
if (weekday == 1) print1='Mon,';
if (weekday == 2) print1='Tues,';
if (weekday == 3) print1='Wed,';
if (weekday == 4) print1='Thu,';
if (weekday == 5) print1='Fri,';
month = today.getMonth();
if (month == 0) print2='January';
if (month == 1) print2='February';
if (month == 2) print2='March';
if (month == 3) print2='April';
if (month == 4) print2='May';
if (month == 5) print2='June';
if (month == 6) print2='July';
if (month == 7) print2='August';
if (month == 8) print2='September';
if (month == 9) print2='October';
if (month == 10) print2='November';
if (month == 11) print2='December';
date = today.getDate();
year=today.getYear();
document.write (' ',print1, ' ', print2, ' ',date ,', ',year);
// STOP HIDE --> 