Que te parece este código
Código Javascript
:
Ver original<script type="text/javascript">
function is_chrome(){
var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
return is_chrome;
}
var texto=document.lastModified;
mm=texto.substring(0,2);
dd=texto.substring(3,5);
aa=texto.substring(6,10);
hora=texto.substring(11,13);
minSeg = texto.substring(13,24);
if(is_chrome()){
hora = parseInt(hora)-5;
document.write(dd+"/"+mm+"/"+aa+" "+hora+minSeg);
}
else
document.write(dd+"/"+mm+"/"+aa+" "+hora+minSeg);
</script>