<!--
today=new Date();
Y=today.getFullYear();
M=today.getMonth()+1;
D=today.getDate();

lmDate=new Date(document.lastModified);
lmY=lmDate.getFullYear();
lmM=lmDate.getMonth()+1;
lmD=lmDate.getDate();

if(lmM<10){lmM="0"+lmM;}
if(lmD<10){lmD="0"+lmD;}

document.write(lmY,".",lmM,".",lmD);
//-->

