function toggleDiv(a){var b=document.getElementById(a).style;if(b.display=="none"){b.display="block"}else{b.display="none"}}function clickclear(b,a){if(b.value==a){b.value=""}}function clickrecall(b,a){if(b.value==""){b.value=a}}function checkEnter(b){var a;if(b&&b.which){b=b;a=b.which}else{b=event;a=b.keyCode}if(a==13){document.forms[0].submit();return false}else{return true}}var clockID=0;function UpdateClock(){if(clockID){clearTimeout(clockID);clockID=0}var a=new Date();document.getElementById("theClock").innerHTML=""+a.getHours()+":"+(a.getMinutes()<10?"0":"")+a.getMinutes();clockID=setTimeout("UpdateClock()",10000)}function StartClock(){UpdateClock()}function KillClock(){if(clockID){clearTimeout(clockID);clockID=0}};