	var old = "";
	showNavClock = true;

	if (ie4||ns6) { document.write('<span id="LiveClockIE" class="content"></span>'); }
	else if (document.layers) { document.write('<ilayer class="content" id="ClockPosNS" visibility="hide"><layer class="content" width="'+mywidth+'" id="LiveClockNS"></layer></ilayer>'); }
   else { old = "true"; show_clock(); }



	function show_clock() {
		if (old == "die") { return; }
	
		if (ns4)
             document.ClockPosNS.visibility="show"

		var Digital = new Date();
		var day = Digital.getDay();
		var mday = Digital.getDate();
		var month = Digital.getMonth();
		var hours = Digital.getHours();
		var year = Digital.getYear();

		var minutes = Digital.getMinutes();
		var seconds = Digital.getSeconds();

		if (minutes <= 9) { minutes = "0"+minutes; }
		if (seconds <= 9) { seconds = "0"+seconds; }
		if (year < 1000) year+=1900


		myclock = '';
		myclock += '<font class="content">';
		myclock += mday+' '+ MOY[month] +', '+year+' ';
		myclock += hours+':'+minutes;
		myclock += ':'+seconds;
		myclock += '</font>';

		if (old == "true") {
			document.write(myclock);
			old = "die";
			return;
		}

		if (ns4) {
			clockpos = document.ClockPosNS;
			liveclock = clockpos.document.LiveClockNS;
			liveclock.document.write(myclock);
			liveclock.document.close();
		} else if (ie4) {
			LiveClockIE.innerHTML = myclock;
		} else if (ns6){
			document.getElementById("LiveClockIE").innerHTML = myclock;
                }            

		setTimeout("show_clock()",1000);
}

