function getObj(obj){var objRef;if(document.all){objRef=eval("document.all."+obj)}if(document.getElementById){objRef=document.getElementById(obj)}return objRef}var clockID=0;var literal="";var tDate=new Date();function showTime(){var B=Number(tDate.getHours());if(B<10){B="0"+B}var C=Number(tDate.getMinutes());if(C<10){C="0"+C}var A=Number(tDate.getSeconds());if(A<10){A="0"+A}getObj("timeRefresh").innerHTML=literal+B+":"+C+":"+A}function UpdateClock(){if(clockID){clearTimeout(clockID);clockID=0}tDate.setTime(tDate.getTime()+1000);showTime();clockID=setTimeout("UpdateClock()",1000)}function _StartClock(B,G,A,E,D,F,C){tDate=new Date(G,A,E,D,F,C);literal=B;showTime();clockID=setTimeout("UpdateClock()",1000)};