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

