﻿//provide by Bijan Bornadel
//for contact me: 09355755577
//copyright-2009
//<!-------------------------------------------------------------------------------------!>\\

//<!--
//show my Time
function t1() { //v3.0
    var r = new Date(); var h = r.getHours(); var m = r.getMinutes(); var s = r.getSeconds();
    var t = ((h < 10) ? "0" : "") + h + ((m < 10) ? ":0" : ":") + m + ((s < 10) ? ":0" : ":") + s;
    aspnetForm.Text1.value = t;
    setTimeout("t1()", 1000);
}
//-->

//<!--
//show-hide city of information
function MM_setTextOfLayer(objId,x,newText) { //v9.0
  with (document) if (getElementById && ((obj=getElementById(objId))!=null))
    with (obj) innerHTML = unescape(newText);
}
//-->