	fullDate = new Date();
	month = fullDate.getMonth() + 1;
	day = fullDate.getDate();
	year = fullDate.getYear();
	monthtens = Math.floor(month / 10);
	monthones = month - monthtens * 10;
	daytens = Math.floor(day / 10);
	dayones = day - daytens * 10;
	if(year < 100) {
		yearthou = 1;
		yearhun = 9;
		yeartens = Math.floor(year / 10);
		yearones = year - yeartens * 10;
	} else if (year >= 100 && year < 200) {
		yearthou = 2;
		yearhun = 0;
		yeartens = Math.floor(year / 10);
		yearones = year - yeartens * 10;
		yeartens = 0;

	} else {
		if(navigator.appName == "Netscape" && navigator.appVersion.substring(0,1) == "4" ) year += 1900;
		yearthou = Math.floor(year/1000);
		yearhun = Math.floor( (year - yearthou * 1000) / 100);
		yeartens = Math.floor( (year - yearthou * 1000 - yearhun * 100) / 10);
		yearones = year - yearthou *1000 - yearhun * 100 - yeartens * 10;
	}
	document.write('<IMG SRC=images/date_' + monthtens + '.gif HEIGHT=13>');
	document.write('<IMG SRC=images/date_' + monthones + '.gif HEIGHT=13><img src="images/date_dot.gif" alt="" width="5" height="4" border="0">');
	document.write('<IMG SRC=images/date_' + daytens + '.gif HEIGHT=13>');
	document.write('<IMG SRC=images/date_' + dayones + '.gif HEIGHT=13><img src="images/date_dot.gif" alt="" width="5" height="4" border="0">');
	document.write('<IMG SRC=images/date_' + yearthou + '.gif HEIGHT=13>');
	document.write('<IMG SRC=images/date_' + yearhun + '.gif HEIGHT=13>');
	document.write('<IMG SRC=images/date_' + yeartens + '.gif HEIGHT=13>');
	document.write('<IMG SRC=images/date_' + yearones + '.gif HEIGHT=13><br>');

