<!-- hide from old browsers
function jsClockTimeZoneTA(){
	// Copyright 1999 - 2001 by Ray Stott
	// OK to use if this copyright is included
	// Script available at http://www.crays.com/jsc
	var TimezoneOffset = 3  // adjust for time zone
	var localTime = new Date()
	var ms = localTime.getTime() 
			 + (localTime.getTimezoneOffset() * 60000)
			 + TimezoneOffset * 3600000
	var time =  new Date(ms) 
	var hour = time.getHours() 
	var minute = time.getMinutes()
	var second = time.getSeconds()
	var temp = "" + ((hour > 12) ? hour - 12 : hour)
	if(hour==0) temp = "12"
	if(temp.length==1) temp = " " + temp
	temp += ((minute < 10) ? ":0" : ":") + minute
	temp += ((second < 10) ? ":0" : ":") + second
	temp += (hour >= 12) ? " PM" : " AM"
	//document.clockFormTimeZone.digits.value = 
	document.getElementById('timeTA').innerHTML = temp;
	setTimeout("jsClockTimeZoneTA()",1000)
  }



function jsClockTimeZoneLO(){
	// Copyright 1999 - 2001 by Ray Stott
	// OK to use if this copyright is included
	// Script available at http://www.crays.com/jsc
	var TimezoneOffset = 0  // adjust for time zone
	var localTime = new Date()
	var ms = localTime.getTime() 
			 + (localTime.getTimezoneOffset() * 60000)
			 + TimezoneOffset * 3600000
	var time =  new Date(ms) 
	var hour = time.getHours() 
	var minute = time.getMinutes()
	var second = time.getSeconds()
	var temp = "" + ((hour > 12) ? hour - 12 : hour)
	if(hour==0) temp = "12"
	if(temp.length==1) temp = " " + temp
	temp += ((minute < 10) ? ":0" : ":") + minute
	temp += ((second < 10) ? ":0" : ":") + second
	temp += (hour >= 12) ? " PM" : " AM"
	//document.clockFormTimeZone.digits.value = 
	document.getElementById('timeLondon').innerHTML = temp;
	setTimeout("jsClockTimeZoneLO()",1000)
  }

function jsClockTimeZoneNY(){
	// Copyright 1999 - 2001 by Ray Stott
	// OK to use if this copyright is included
	// Script available at http://www.crays.com/jsc
	var TimezoneOffset = -5  // adjust for time zone
	var localTime = new Date()
	var ms = localTime.getTime() 
			 + (localTime.getTimezoneOffset() * 60000)
			 + TimezoneOffset * 3600000
	var time =  new Date(ms) 
	var hour = time.getHours() 
	var minute = time.getMinutes()
	var second = time.getSeconds()
	var temp = "" + ((hour > 12) ? hour - 12 : hour)
	if(hour==0) temp = "12"
	if(temp.length==1) temp = " " + temp
	temp += ((minute < 10) ? ":0" : ":") + minute
	temp += ((second < 10) ? ":0" : ":") + second
	temp += (hour >= 12) ? " PM" : " AM"
	//document.clockFormTimeZone.digits.value = 
	document.getElementById('timeNY').innerHTML = temp;
	setTimeout("jsClockTimeZoneNY()",1000)
  }

//-->
