var weekdaystxt=["Sun", "Mon", "Tues", "Wed", "Thurs", "Fri", "Sat"]
function showLocalTime(container, servermode, offsetMinutes, displayversion){
if (!document.getElementById || !document.getElementById(container)) return
this.container=document.getElementById(container)
this.displayversion=displayversion
servertimestring=servermode
this.localtime=this.serverdate=new Date(servertimestring)
this.localtime.setTime(this.serverdate.getTime()+offsetMinutes*60*1000)
this.checktheminutes=offsetMinutes;
this.updateTime()
this.updateContainer()
}
showLocalTime.prototype.updateTime=function(){
var thisobj=this
this.localtime.setSeconds(this.localtime.getSeconds()+1)
setTimeout(function(){thisobj.updateTime()}, 1000)
}
showLocalTime.prototype.updateContainer=function(){
var thisobj=this
if (this.displayversion=="long")
this.container.innerHTML=this.localtime.toLocaleString()
else{
var hour=this.localtime.getHours()
var minutes=this.localtime.getMinutes()
var seconds=this.localtime.getSeconds()
var ampm=(hour>=12)? "pm" : "am"
var dayofweek=""
if(this.checktheminutes>60||this.checktheminutes<0){
var dayofweek=" ("+weekdaystxt[this.localtime.getDay()]+")"
}
this.container.innerHTML=formatField(hour, 1)+":"+formatField(minutes)+ampm+dayofweek //:"+formatField(seconds)+"
}
setTimeout(function(){thisobj.updateContainer()}, 1000)
}
function formatField(num, isHour){
if (typeof isHour!="undefined"){
var hour=(num>12)? num-12 : num
return (hour==0)? 12 : hour
}
return (num<=9)? "0"+num : num
}