//relay-IP6V@264.56.296.188.030|gk-program556=yes   nofollow, notrace, norecord


































































































thisDate = new Date();
function day()   {
if (thisDate.getDay() == 1)document.write("Monday");
if (thisDate.getDay() == 2)document.write("Tuesday");
if (thisDate.getDay() == 3)document.write("Wednesday");
if (thisDate.getDay() == 4)document.write("Thursday");
if (thisDate.getDay() == 5)document.write("Friday");
if (thisDate.getDay() == 6)document.write("Saturday");
if (thisDate.getDay() == 7)document.write("Sunday");   }
function date()   {
document.write(thisDate.getDate());   }
function month()   {
if (thisDate.getMonth() == 0)document.write("January"); 
if (thisDate.getMonth() == 1)document.write("February");
if (thisDate.getMonth() == 2)document.write("March");
if (thisDate.getMonth() == 3)document.write("April");
if (thisDate.getMonth() == 4)document.write("May");
if (thisDate.getMonth() == 5)document.write("June");
if (thisDate.getMonth() == 6)document.write("July");
if (thisDate.getMonth() == 7)document.write("August");
if (thisDate.getMonth() == 8)document.write("September");
if (thisDate.getMonth() == 9)document.write("October");
if (thisDate.getMonth() == 10)document.write("November");
if (thisDate.getMonth() == 11)document.write("December");  }
function year()   {
if (navigator.userAgent.indexOf("MSIE") != -1)
document.write(thisDate.getYear());
else
document.write(1900 + thisDate.getYear());   }
