
 <!-- hide from old browsers
 function gmtClock(){
/* Basic gmt clock By A1 JavaScripts, for more scripts visit
www.a1javascripts.com - please leave these credits in place if using this script. */
    time = new Date()
    gmtMS = time.getTime() + (time.getTimezoneOffset() * 60000)
    gmtTime =  new Date(gmtMS)
    hour = gmtTime.getHours()
    minute = gmtTime.getMinutes()
    second = gmtTime.getSeconds()
    temp = "" + ((hour < 10) ? "0" : "") + hour
    temp += ((minute < 10) ? ":0" : ":") + minute
    temp += ((second < 10) ? ":0" : ":") + second
    document.clockForm.digits.value = temp
    setTimeout("gmtClock()",1000)
    }  
 //-->

