hora = new Date(); 
var M = hora.getMinutes (); 
var H = hora.getHours();
var S = hora.getSeconds();

var starttime = H + ':' + M + ':'+ S; 
function clock() {
	var seconds, minutes, hours, gmt=""

	starttime = starttime.split(":")
	seconds = starttime[2]
	minutes = starttime[1]
	hours = starttime[0]
	if(seconds<59){seconds++;if(seconds.toString().length==1){seconds = "0" + seconds.toString();}
	}else{seconds = "00";
	if(minutes<59){minutes++;if(minutes.toString().length==1){minutes = "0" + minutes.toString();}
	}else{minutes="00";
	if(hours<24){hours++;if(hours.toString().length==1){hours = "0" + hours.toString();}
	}else{hours="00";}
	}}

	starttime = hours + ":" + minutes + ":" + seconds
	document.getElementById("ServerTime").innerHTML = "&nbsp;" + starttime + " (CET" + gmt + ")"
	setTimeout(clock, 1000)
}
/*<SPAN id=ServerTime>
      <SCRIPT type=text/javascript>clock()</SCRIPT>
      </SPAN>*/