DS noted that in PIR site some browsers are having problems with javascript's document.lastModified method, so I replaced javascript based on this call:
var d = new Date(document.lastModified);
with php using this:
<?php
$filename = 'Call.php';
if (file_exists($filename)) {
echo "Updated: " . date ("d F Y", filemtime($filename));
}
?>