upDate=new Date(document.lastModified);
y=upDate.getFullYear();
m=upDate.getMonth()+1;
d=upDate.getDate();
h=upDate.getHours();
mi=upDate.getMinutes();
s=upDate.getSeconds();
if(m<10){m="0"+m;}
if(d<10){d="0"+d;}
if(h<10){h="0"+h;}
if(mi<10){mi="0"+mi;}
if(s<10){s="0"+s;}
document.write("Last Updated :",y,"/",m,"/",d," ",h,":",mi,":",s);
