
// JavaScript Document

<!--                                        

     
d=new Date                                             
a=d.getYear()                                             
b=d.getMonth()                                             
c=d.getDay()                                             
d=d.getDate()                                             
if(c==0)                                             
  w="Sunday"                                             
else if(c==1)                                             
  w="Monday"                                             
else if(c==2)                                             
  w="Tuesday"                                             
else if(c==3)                                             
  w="Wednesday"                                             
else if(c==4)                                             
  w="Thursday"                                             
else if(c==5)                                             
  w="Friday"                                             
else if(c==6)                                             
  w="Saturday"                                             
if (a>=2000)                                             
document.write("Today is"+"  "+a+"-"+(b+1)+"-"+d+" "+w+"  "+"Welcome!")                                             
else                                             
document.write("Today is"+"  "+"19"+a+"-"+(b+1)+"-"+d+" "+w+"  "+"Welcome!");                                             
// -->
