English
<!-- Put the following code into the <body> area--> <script LANGUAGE="JavaScript"> <!-- document.write("<center><font size=+1><b>") now = new Date() //Define a new object, new has the properties of Date document.write("<center><small>") if (now.getDay() == 5) document.write("Today is Friday") if (now.getDay() == 6) document.write("Today is Saturday") if (now.getDay() == 0) document.write("Today is Sunday") if (now.getDay() = = 1) document.write("Today is Monday") if (now.getDay() == 2) document.write("Today is Tuesday") if (now.getDay() == 3) document.write( "Today is Wednesday") if (now.getDay() == 4) document.write("Today is Thursday") document.write("</small></center>") //--> </script >