// Add the page last modified date automatically to bottom of the page.
window.onload = setModifiedDate;

function setModifiedDate()
{
    var dateMod = document.getElementById('datemod');
    var text = document.createTextNode(document.lastModified);

   dateMod.appendChild(text);
}

