function showZeroFilled(inValue) {
		if (inValue > 9) {
			return inValue
		}
		return "0" + inValue
	}

	function showTheTime() {
		now = new Date
		if (now.getDay()==0)
		  nday="Sunday";
		if (now.getDay()==1)
		  nday="Monday";
		if (now.getDay()==2)
		  nday="Tuesday";
		if (now.getDay()==3)
		  nday="Wednesday";
		if (now.getDay()==4)
		  nday="Thursday";
		if (now.getDay()==5)
		  nday="Friday";
		if (now.getDay()==6)
		  nday="Saturday";

		document.getElementById("clock").innerHTML = nday + "  " + showZeroFilled(now.getDate()) + "/" + showZeroFilled(now.getMonth() + 1) + "/" + now.getYear() + "    " + showZeroFilled(now.getHours()) + ":" + showZeroFilled(now.getMinutes()) + ":" + showZeroFilled(now.getSeconds()) 
		setTimeout("showTheTime()",1000)
	}


if (top.location != self.location) {
top.location = self.location.href
}
