						var timerID = null;
						var timerRunning = false;
						function stopclock (){
						if(timerRunning)
						clearTimeout(timerID);
						timerRunning = false;}
						function startclock () {
						stopclock();
						showtime();}
						function showtime () {
						var now = new Date();
						var hours = now.getHours();
						var minutes = now.getMinutes();
						var seconds = now.getSeconds()
						var timeValue = "" +((hours >= 12) ? "ÏÂÎç " : "ÉÏÎç " )
						timeValue += ((hours >12) ? hours -12 :hours)
						timeValue += ((minutes < 10) ? ":0" : ":") + minutes
						timeValue += ((seconds < 10) ? ":0" : ":") + seconds
						document.clock.thetime.value = timeValue;
						timerID = setTimeout("showtime()",1000);
						timerRunning = true;}					                 
<!---
today=new Date();
var hours = today.getHours();
var minutes = today.getMinutes();
var seconds = today.getSeconds();
var timeValue = "<FONT COLOR=#999999>" + ((hours >12) ? hours -12 :hours); timeValue += ((minutes < 10) ? "<BLINK><FONT COLOR=#999999>:</FONT></BLINK>0" : "<BLINK><FONT COLOR=#999999>:</FONT></BLINK>") + minutes+"</FONT></FONT>";
timeValue += (hours >= 12) ? " <FONT COLOR=#ffffff>pm</FONT>" : " <FONT COLOR=#ffffff>am</FONT>";
function initArray(){
this.length=initArray.arguments.length
for(var i=0;i<this.length;i++)
this[i+1]=initArray.arguments[i]  }
var d=new initArray("<font color=#999999>Sunday","<font color=#999999>Monday","<font color=#999999>Tuesday","<font color=#999999>Wednesday","<font color=#999999>Thursday","<font color=#999999> Friday ","<font color=#999999> Saturday"); document.write("<font color=#999999>",today.getDate(),"<font color=#999999> / ","<font color=#999999>",today.getMonth()+1,"<font color=#999999> / ","<font color=#999999>",today.getYear(),"<font color=#999999> </FONT>",d[today.getDay()+1]," ",timeValue);  //-->
