function gettime(shifttime){thistime= new Date();hours=thistime.getUTCHours();hours=eval(hours);shifthours=eval(shifttime);localhours=eval(shifthours+hours);if (localhours <0) {localhours=24+localhours};if (localhours >=24) {localhours=localhours-24};var twelve="AM";minutes=thistime.getUTCMinutes();seconds=thistime.getUTCSeconds();if (eval(localhours) >11) {localhours=localhours-12;twelve="PM"; }if (eval(minutes) < 10) {minutes="0"+minutes};if (eval(seconds) < 10) {seconds="0"+seconds};thistime = localhours+":"+minutes+" "+twelve;document.write('<font size=2>'+thistime+'</font>');}
