if (window.addEventListener) //DOM method for binding an event
window.addEventListener("load", getimings, false);
else if (window.attachEvent) //IE exclusive method for binding an event
window.attachEvent("onload", getimings);
else if (document.getElementById) //support older modern browsers
window.onload=getimings;
function getimings()
{

 document.getElementById("mf_time").innerHTML = "10:00 am to 5:00 pm"   
 document.getElementById("sat_time").innerHTML = "11:00 am to 5:00 pm"   
 document.getElementById("ad_mf_time_1").innerHTML = "11.00 a.m. to 1.00 p.m"   
 document.getElementById("ad_mf_time_2").innerHTML = "3.00 p.m. to 5.00 p.m"   
 document.getElementById("ad_sat_time_1").innerHTML = "11.30 a.m. to 1.30 p.m"   
 document.getElementById("ad_sat_time_2").innerHTML = "3.00 p.m. to 5.00 p.m"   
}

