<!--
theDate= new Date();      // get today's date
months = new Array();     // build an array of the months of the year
days = new Array();       // build an array of the days of the month
months[1] ="january";
months[2] ="february";
months[3] ="march";
months[4] ="april";
months[5] ="may";
months[6] ="june";
months[7] ="july";
months[8] ="august";
months[9] ="september";
months[10] ="october";
months[11] ="november";
months[12] ="december";
days[1] ="1";
days[2] ="2";
days[3] ="3";
days[4] ="4";
days[5] ="5";
days[6] ="6";
days[7] ="7";
days[8] ="8";
days[9] ="9";
days[10] ="10";
days[11] ="11";
days[12] ="12";
days[13] ="13";
days[14] ="14";
days[15] ="15";
days[16] ="16";
days[17] ="17";
days[18] ="18";
days[19] ="18";
days[20] ="20";
days[21] ="21";
days[22] ="22";
days[23] ="23";
days[24] ="24";
days[25] ="25";
days[26] ="26";
days[27] ="27";
days[28] ="28";
days[29] ="29";
days[30] ="30";
days[31] ="31";
function printDate() {
document.write('<img src="images/gif/' + days[theDate.getDate()] + '.gif"' + 'alt="today' + '">'); // isolate the day and get the right image
document.write('<img src="images/gif/de/' + months[theDate.getMonth()+1] + '.gif"' + 'alt="this month' + '">'); // isolate the month and get the right image
document.write('<img src="images/gif/' + theDate.getYear() + '.gif"' + 'alt="this year' + '">'); // isolate the year and get the right image - images provided up to 2013
}
//-->