﻿// JScript File
//alert("Base Loaded");
//sri-commented to prevent back button issue
//if(window.history.forward(1) != null)
//  window.history.forward(1);  
function updateDateTime()
{
    var dateObject=document.getElementById("datetime");
    if (dateObject!=null)
    {
        var today       = new Date();
        dateObject.innerHTML=today.toLocaleDateString();    
    }
}





