//<!--
		var isIE = (navigator.appName.indexOf("Microsoft") !=-1);
		var isNav = (navigator.appName.indexOf("Netscape") !=-1);
		var isNav6 = 0;
		if (!document.all && document.getElementById) { isNav6 = 1; }
		
		var theTime = "";
				
		function CalcClock() {
			var days = new Array(8);
  			days[1] = "Sun";
  			days[2] = "Mon";
  			days[3] = "Tue";
  			days[4] = "Wed";
  			days[5] = "Thu";
  			days[6] = "Fri";
  			days[7] = "Sat";
			
  			var months = new Array(13);
  			months[1] = "Jan";
  			months[2] = "Feb";
  			months[3] = "Mar";
  			months[4] = "Apr";
  			months[5] = "May";
  			months[6] = "Jun";
  			months[7] = "Jul";
  			months[8] = "Aug";
  			months[9] = "Sep";
  			months[10] = "Oct";
  			months[11] = "Nov";
  			months[12] = "Dec";

  			var now = new Date();
  			var nday = days[now.getDay() + 1];
  			var nmonth = months[now.getMonth() + 1];
  			var ndate = now.getDate();
  			var nyear = now.getYear();
  			var hour = now.getHours();
  			var minute = now.getMinutes();
  			var sec = now.getSeconds();

  			if(minute < 10)
    			minute = "0" + minute;
  			if(sec < 10)
    			sec = "0" + sec;
	
  			if(nyear >= 2000)
    			;
  			else if(nyear < 10)
    			nyear = "200" + nyear;
  			else if ((nyear >= 10) && (nyear < 50))
    			nyear = "20" + nyear;
  			else if ((nyear > 100) && (nyear < 110))
    			nyear = "200" + (nyear - 100);
  			else if (nyear >= 110)
    			nyear = "20" + (nyear - 100);
  			else if (nyear = 100)
    			nyear = "2000";
  			else
    			nyear = "19" + nyear;
			theTime = "<TABLE WIDTH=300 CELLSPACING=0 CELLPADDING=0><TR><TD ALIGN='center'>";
			theTime += "<FONT FACE='Arial,Helvetica,sans-serif' SIZE='1' COLOR='#FFFFFF'><B>" + hour + ':' + minute + ':' + sec + ' ';
    		theTime += nday + " " + nmonth + " " + ndate + ", " + nyear + "</B></FONT>";
			theTime += "</TD></TR></TABLE>";
		}
		
		function ShowClock() {
			if (isNav6) {
				var thelayer;
				thelayer = document.getElementById("theClock");
				thelayer.innerHTML=theTime;
			} else if (isNav) {
				document.theClock.document.write(theTime);
				document.theClock.document.close();
			} else if (isIE) {
				theClock.innerHTML=theTime;
			}
		}
		
		function StartClock() {
			CalcClock();
			ShowClock()
			setTimeout("StartClock()", 1000);
		}
		
		function RedrawClock() {
			//StartClock();
		}
		
	//-->