

<!--  
<!-- Original:  Dandello (dandello@pacifier.com) -->
<!-- Test Mod -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var day="";
var month="";
var myweekday="";
var year="";
newdate = new Date();
mydate = new Date();
newtime=newdate.getTime();

mydate.setTime(newtime);
myday = mydate.getDay();
mymonth = mydate.getMonth();
myweekday= mydate.getDate();
weekday= myweekday;
myyear= mydate.getYear();
year = myyear;

// Y2K fix by Chris Anders
if (year < 2000)
        year += 1900;

// -->