<!--
today = new Date();
Y0 = today.getYear();
if(today.getYear() >= 2000){
}
else{
	Y0 = today.getYear()+1900;
}

document.write("<img src=\"image/date/"+Math.floor(Y0/1000)+".gif\" width=\"23\" height=\"50\"  border=\"0\">");
document.write("<img src=\"image/date/"+Math.floor((Y0-2000)/100)+".gif\" width=\"23\" height=\"50\"  border=\"0\">");
document.write("<img src=\"image/date/"+Math.floor((Y0-2000)/10)+".gif\" width=\"23\" height=\"50\"  border=\"0\">");
document.write("<img src=\"image/date/"+Math.ceil(Y0%10)+".gif\" width=\"23\" height=\"50\"  border=\"0\">");
document.write("<img src=\"image/date/year.gif\" width=\"41\" height=\"50\"  border=\"0\">");

M0 = today.getMonth() + 1;
if(M0 < 10){
	document.write("<img src=\"image/date/"+M0+".gif\" width=\"23\" height=\"50\"  border=\"0\">");
}
else{
	document.write("<img src=\"image/date/"+(Math.floor(M0/10))+".gif\" width=\"23\" height=\"50\"  border=\"0\">");
	document.write("<img src=\"image/date/"+(M0%10)+".gif\" width=\"23\" height=\"50\"  border=\"0\">");
}
document.write("<img src=\"image/date/month.gif\" width=\"36\" height=\"50\"  border=\"0\">");

D0 = today.getDate();
if(D0 < 10){
	document.write("<img src=\"image/date/"+D0+".gif\" width=\"23\" height=\"50\"  border=\"0\">");
}
else{
	document.write("<img src=\"image/date/"+Math.floor(D0/10)+".gif\" width=\"23\" height=\"50\"  border=\"0\">");
	document.write("<img src=\"image/date/"+Math.ceil(D0%10)+".gif\" width=\"23\" height=\"50\"  border=\"0\">");
}
document.write("<img src=\"image/date/day.gif\" width=\"31\" height=\"50\"  border=\"0\">");
//-->
