<!-- 
tmpDate = new Date(); 
date = tmpDate.getDate(); 
month= tmpDate.getMonth() + 1 ; 
year= tmpDate.getYear(); 
document.write(date); 
document.write("/"); 
document.write(month); 
document.write("/"); 
document.write(year); 
document.write("&nbsp;&nbsp;"); 
now = new Date() //
 
if (now.getDay() == 5) document.write("Friday") 
 
if (now.getDay() == 6) document.write("Saturday") 
 
if (now.getDay() == 0) document.write("Sunday") 
 
if (now.getDay() == 1) document.write("Monday") 
 
if (now.getDay() == 2) document.write("Tuseday") 
 
if (now.getDay() == 3) document.write("Wednesday") 
 
if (now.getDay() == 4) document.write("Thursday"); 
// --> 