<!--//
 function gmtClock(){
  var gmtTime = new Date(new Date().getTime()+(new Date().getTimezoneOffset()*0000));
  var clock = ((gmtTime.getHours() < 10) ? "0" : "") + gmtTime.getHours();
	  clock+= ((gmtTime.getMinutes() < 10) ? ":0" : ":") + gmtTime.getMinutes();
	  clock+= ((gmtTime.getSeconds() < 10) ? ":0" : ":") + gmtTime.getSeconds();
	  document.getElementById('clock').innerHTML = clock;
	  setTimeout('gmtClock()',1000);
 }    
 onload = gmtClock;
//-->
