
<!--
theDate= new Date();
months = new Array();
days = new Array();
months[1] ="img/januari.gif";
months[2] ="img/februari.gif";
months[3] ="img/maart.gif";
months[4] ="img/april.gif";
months[5] ="img/mei.gif";
months[6] ="img/juni.gif";
months[7] ="img/juli.gif";
months[8] ="img/augustus.gif";
months[9] ="img/september.gif";
months[10] ="img/oktober.gif";
months[11] ="img/november.gif";
months[12] ="img/december.gif";


function printDate() {
document.write('<img src="' + months[theDate.getMonth()+1] + '">'); // month
}
-->

