function SetTitle()
{
document.write('<table width=100% border=0 align=left cellpadding=0 cellspacing=0 ><TR align=left ><TD>');
var enabled = 0; today = new Date();
var date,iver,sver;
sver=navigator.appVersion;
iver=parseFloat(sver.substring(sver.indexOf("MSIE")+5,sver.indexOf("MSIE")+8));
date = today.getYear() + "年" + (today.getMonth() + 1) + "月" + today.getDate() + "日";

document.write("</TD><TD style='color:#000000'>悉尼：");
document.write("<SPAN id=timer2 style='color:#940000'>" + today.getHours() + ":"+today.getMinutes()+":"+today.getSeconds()+"</SPAN>");
document.write("</TD><TD style='color:#000000'>东京:");
document.write("<SPAN id=timer3 style='color:#940000'>" + today.getHours() + ":"+today.getMinutes()+":"+today.getSeconds()+"</SPAN>");
document.write("</TD><TD>");
document.write("</TD><TD style='color:#000000'>香港：");
document.write("<SPAN id=timer1 style='color:#940000'>" + today.getHours() + ":"+today.getMinutes()+":"+today.getSeconds()+"</SPAN>");
document.write("</TD><TD>");
document.write("</TD><TD style='color:#000000'>法兰克福：");
document.write("<SPAN id=timer4 style='color:#940000'>" + today.getHours() + ":"+today.getMinutes()+":"+today.getSeconds()+"</SPAN>");
document.write("</TD><TD>");
document.write("</TD><TD style='color:#000000'>伦敦：");
document.write("<SPAN id=timer5 style='color:#940000'>" + today.getHours() + ":"+today.getMinutes()+":"+today.getSeconds()+"</SPAN>");
document.write("</TD><TD>");
document.write("</TD><TD style='color:#000000'>纽约：");
document.write("<SPAN id=timer6 style='color:#940000'>" + today.getHours() + ":"+today.getMinutes()+":"+today.getSeconds()+"</SPAN>");
document.write("</TD></TR></TABLE>");


changetime();
}

function changetime()
{
	var minutes,seconds,t=new Date();
	minutes = t.getMinutes();
	if(t.getMinutes()<10)
		minutes = "0"+t.getMinutes();
	seconds = t.getSeconds();
	if(t.getSeconds()<10)
		seconds = "0"+t.getSeconds();
	timer1.innerText=t.getHours() + ":"+minutes+":"+seconds;

	t.setHours(t.getHours() + 2)
	minutes = t.getMinutes();
	if(t.getMinutes()<10)
		minutes = "0"+t.getMinutes();
	seconds = t.getSeconds();
	if(t.getSeconds()<10)
		seconds = "0"+t.getSeconds();
	timer2.innerText=t.getHours() + ":"+minutes+":"+seconds;

	t.setHours(t.getHours() - 1)
	minutes = t.getMinutes();
	if(t.getMinutes()<10)
		minutes = "0"+t.getMinutes();
	seconds = t.getSeconds();
	if(t.getSeconds()<10)
		seconds = "0"+t.getSeconds();
	timer3.innerText=t.getHours() + ":"+minutes+":"+seconds;

	t.setHours(t.getHours() - 7)
	minutes = t.getMinutes();
	if(t.getMinutes()<10)
		minutes = "0"+t.getMinutes();
	seconds = t.getSeconds();
	if(t.getSeconds()<10)
		seconds = "0"+t.getSeconds();
	timer4.innerText=t.getHours() + ":"+minutes+":"+seconds;
	
	t.setHours(t.getHours() - 1)
	minutes = t.getMinutes();
	if(t.getMinutes()<10)
		minutes = "0"+t.getMinutes();
	seconds = t.getSeconds();
	if(t.getSeconds()<10)
		seconds = "0"+t.getSeconds();
	timer5.innerText=t.getHours() + ":"+minutes+":"+seconds;
	
	t.setHours(t.getHours() - 5)
	minutes = t.getMinutes();
	if(t.getMinutes()<10)
		minutes = "0"+t.getMinutes();
	seconds = t.getSeconds();
	if(t.getSeconds()<10)
		seconds = "0"+t.getSeconds();
	timer6.innerText=t.getHours() + ":"+minutes+":"+seconds;


	setTimeout("changetime()",1000);
}