function ShowTime()
{
  var strTime=""
  //设定时区差
nhr=new Array(5)
nhr[0]="<strong>北京:</strong>"
nhr[1]="<strong>纽约:</strong>"
nhr[2]="<strong>东京:</strong>"
nhr[3]="<strong>伦敦:</strong>"
nhr[4]="<strong>悉尼:</strong>"
  nhr[5]="<strong>迪拜:</strong>"
  
  tmpDate=new Date();
  tmpHrs=tmpDate.getHours();
  dhr=new Array(5)
  dhr[0]=0
  dhr[1]=-13
  dhr[2]=1
  dhr[3]=-8
  dhr[4]=2
  dhr[5]=-4

  
  strTime=strTime+" <table width=843 border=0 cellspacing=1 cellpadding=1 style='font-size:12px;'><tr align=left>"
  for (var i=0;i<6;i++)
  {
    strTime=strTime+"<td height=20 align=center><font color=#993300>"+nhr[i]+" "
    //alert (tmpDate)
    tmpDate=new Date();
    
    tmpHrs=tmpDate.getHours();
    dhr[i]=tmpHrs+dhr[i]
    tmpDate.setHours(dhr[i]);
    date=tmpDate.getDate();
    month=tmpDate.getMonth()+1 ;
    year=tmpDate.getFullYear();
    hrs=tmpDate.getHours();
    mins=tmpDate.getMinutes();
    secs=tmpDate.getSeconds();
    if(hrs<10)
    hrs="0"+hrs;
    if(mins<10)
    mins="0"+mins;
    if(secs<10)
    secs="0"+secs;
    
    //strTime=strTime+(month);
    //strTime=strTime+("月");
    strTime=strTime+(date);
    strTime=strTime+("日 ");
    strTime=strTime+(hrs);
    strTime=strTime+(":");
    strTime=strTime+(mins);
    strTime=strTime+(":");
    strTime=strTime+(secs);
    strTime=strTime+"</font></td>";
  }
  strTime=strTime+"</tr></table>"  
  SpanTimeZone.innerHTML=strTime
  setTimeout('ShowTime()',1000);
}


