/* author: James Lytle */
/* creation date: 2/12/01 */

      function show()
      {
        if (!document.all&&!document.getElementById) return
        thelement=document.getElementById? document.getElementById("Tick"): document.all.Tick
        var days=new Array( "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" )
        var months=new Array( "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" )
        var Digital=new Date()
        var year=Digital.getUTCFullYear()
        var month=Digital.getUTCMonth()
        var weekday=Digital.getUTCDay()
        var date=Digital.getUTCDate()
        var hours=Digital.getUTCHours()
        var minutes=Digital.getUTCMinutes()
        var seconds=Digital.getUTCSeconds()
        if (hours<12) hours="0" + hours
        if (minutes<=9) minutes="0" + minutes
        if (seconds<=9) seconds="0" + seconds
        var theTime=days[weekday] + ", " + date + " " + months[month] + " " + year + "  " + hours + ":" + minutes + ":" + seconds
//        document.Tick.Clock.value=theTime
	thelement.innerHTML="<center>Universal Coordinated Time</center>" + "<p><center>" + theTime + "</center>"
        setTimeout("show()",1000)
      }
      window.onload=show
