// Copyright (c)2001 http://www.Lausche.de
function tick() {
	if (document.all){

	  var t_hours, f_hour, n_hour, minutes, seconds, day, month, today, year;

	  today = new Date(); 
	  t_hour=f_hour=n_hour=today.getHours();
	  minutes=today.getMinutes(); 
	  seconds=today.getSeconds();

	  	 if (seconds < 10) {seconds="0"+seconds;}
	         if (minutes < 10) {minutes="0"+minutes;}
	         
	  	 
	  	 <!-- Tokio --
	  	 
	  	 for (var i = 0; i <= 6; i++){
	  	 	t_hour = t_hour + 1;
	  	 	if (t_hour >= 24) {t_hour = 0;}
	  	 }
	  	 if (t_hour < 10) {t_hour="0"+t_hour;}
	  	 
	  	 
	  	 <!-- Frankfurt --
	  	 
	  	 if (f_hour < 10) {f_hour="0"+f_hour;}
	  	 
	  	 
	  	 <!-- new York --
	  	 
	  	 for (var i = 0; i <= 5; i++){
	  	 	n_hour = n_hour - 1;
	  	 	if (n_hour <= 0) {n_hour = 24;}
	  	 }
	  	 if (n_hour < 10) {n_hour="0"+n_hour;}
	  	 
	  	 
	  timeString="Tokio: " + " " + t_hour + ":" + minutes + ":" + seconds + "&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;" + "Frankfurt: " + " " + f_hour + ":" + minutes + ":" + seconds + "&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;" + "New York: " + " " + n_hour + ":" + minutes + ":" + seconds;

	  StockClock.innerHTML = timeString;

	  window.setTimeout("tick();", 100);}}
	  window.onload = tick;