var timerID1 = null
var timerRunning1 = false

function stopclock1(){
if(timerRunning1)
clearTimeout(timerID1)
timerRunning1 = false
}

function startclock1(){
stopclock1()
showtime1()
}

function showtime1(){

different1 = +19
var now1 = new Date()
var zone1 =now1.getTimezoneOffset()/60
var hours1 = now1.getHours()+zone1+different1
var minutes1 = now1.getMinutes()
var seconds1 = now1.getSeconds()
var timeValue1 = "" + ((hours1 >= 24) ? hours1 - 24 : hours1)
timeValue1 += ((minutes1 < 10) ? ":0" : ":") + minutes1
timeValue1 += ((seconds1 < 10) ? ":0" : ":") + seconds1
document.all.face1.innerText = "New York " + timeValue1 
timerID1 = setTimeout("showtime1()",1000)
timerRunning1 = true
}
//-->

<!-- 
var timerID2 = null
var timerRunning2 = false

function stopclock2(){
if(timerRunning2)
clearTimeout(timerID2)
timerRunning2 = false
}

function startclock2(){
stopclock2()
showtime2()
}

function showtime2(){

different2 = 0
var now2 = new Date()
var zone2 =now2.getTimezoneOffset()/60
var hours2 = now2.getHours()+zone2+different2
var minutes2 = now2.getMinutes()
var seconds2 = now2.getSeconds()
var timeValue2 = "" + ((hours2 >= 24) ? hours2 -24 : hours2)
timeValue2 += ((minutes2 < 10) ? ":0" : ":") + minutes2
timeValue2 += ((seconds2 < 10) ? ":0" : ":") + seconds2
document.all.face2.innerText = "London " + timeValue2 
timerID2 = setTimeout("showtime2()",1000)
timerRunning2 = true
}
//-->

<!-- 
var timerID3 = null
var timerRunning3 = false

function stopclock3(){
if(timerRunning3)
clearTimeout(timerID3)
timerRunning3 = false
}

function startclock3(){
stopclock3()
showtime3()
}

function showtime3(){

different3 = +4
var now3 = new Date()
var zone3 =now3.getTimezoneOffset()/60
var hours3 = now3.getHours()+zone3+different3
var minutes3 = now3.getMinutes()
var seconds3 = now3.getSeconds()
var timeValue3 = "" + ((hours3 >= 24) ? hours3 - 24 : hours3)
timeValue3 += ((minutes3 < 10) ? ":0" : ":") + minutes3
timeValue3 += ((seconds3 < 10) ? ":0" : ":") + seconds3
document.all.face3.innerText = "Dubai " + timeValue3 
timerID3 = setTimeout("showtime3()",1000)
timerRunning3 = true
}
//-->

<!-- 
var timerID4 = null
var timerRunning4 = false

function stopclock4(){
if(timerRunning4)
clearTimeout(timerID4)
timerRunning4 = false
}

function startclock4(){
stopclock4()
showtime4()
}

function showtime4(){

different4 = +5
var now4 = new Date()
var zone4 = now4.getTimezoneOffset()/60
var hours4 = now4.getHours()+zone4+different4
var minutes4 = now4.getMinutes() + 30;
if (minutes4 >= 60) { minutes4 = minutes4 - 60; hours4 = hours4+1; }
var seconds4 = now4.getSeconds()
var timeValue4 = "" + ((hours4 >= 24) ? (hours4 - 24).replace("-","")  : hours4)
timeValue4 += ((minutes4 < 10) ? ":0" : ":") + minutes4
timeValue4 += ((seconds4 < 10) ? ":0" : ":") + seconds4
document.all.face4.innerText = "New Delhi " + timeValue4 
timerID4 = setTimeout("showtime4()",1000)
timerRunning4 = true
}
//-->

<!-- 
var timerID5 = null
var timerRunning5 = false

function stopclock5(){
if(timerRunning5)
clearTimeout(timerID5)
timerRunning5 = false
}

function startclock5(){
stopclock5()
showtime5()
}

function showtime5(){

different5 = +8
var now5 = new Date()
var zone5 =now5.getTimezoneOffset()/60 
var hours5 = now5.getHours()+zone5+different5
var minutes5 = now5.getMinutes()
var seconds5 = now5.getSeconds()
var timeValue5 = "" + ((hours5 >= 24) ? (hours5 - 24).replace("-","") : hours5)
timeValue5 += ((minutes5 < 10) ? ":0" : ":") + minutes5
timeValue5 += ((seconds5 < 10) ? ":0" : ":") + seconds5
document.all.face5.innerText = "Hong Kong " + timeValue5 
timerID5 = setTimeout("showtime5()",1000)
timerRunning5 = true
}