//CLOCK 1.1
	var itsep = 0;	
	
	var WeekDays = new Array("sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday");
	var Months = new Array("january", "february", "march", "april", "may", "june", "july", "august", "september", "october", "november", "december");

	function show2() {
		var Today = new Date();
		var hours = Today.getHours();
		var minutes = Today.getMinutes();
		var seconds = Today.getSeconds();
		var WeekDay = WeekDays[Today.getDay()];		
		var Month = Months[Today.getMonth()];
		var dn = "am";
		var tsep = ":";

		if(hours>=12){
			dn = "pm";
			hours -= 12;
		}
		if(hours==0)
			hours = 12;
		if(minutes<=9)
			minutes = "0" + minutes;
		if(seconds<=9)
			seconds = "0" + seconds;
			
		tsep=(itsep==0)?":":"<font face=Verdana color=#FF8040 size=-2>:</font>";
		if(++itsep==2)
			itsep=0;
		
		var ctime = "<font face=Verdana color=#ffffff size=-2>&nbsp;" + 
						WeekDay + " " + Today.getDate() + " " + Month + " " + Today.getFullYear() + " - " +
						hours + tsep + minutes + tsep + seconds+"</font>";
		if(NS)
			with(document.layers["tick2"]) {
				moveTo(163,7);
				document.write(ctime);
				document.close();
			}
		else
			if(SM)
				document.getElementById("tick2").innerHTML = ctime;
			else
				if(!OP)
					tick2.innerHTML = ctime;
	}
	if(!OP) setInterval("show2()",500);
