	function oClock()
	{
		var time = new Date ();
		    var hours 	= time.getHours();
		    var minutes = time.getMinutes();
		    	minutes = ((minutes < 10) ? "0" : "") + minutes;
		    var seconds = time.getSeconds();
		    	seconds = ((seconds < 10) ? "0" : "") + seconds;
	    var clock = hours + ":" + minutes + ":" + seconds;
	    if(clock != document.getElementById('fclockf').innerHTML) document.getElementById('fclockf').innerHTML = clock;
	    t = setTimeout("oClock()",1000);
	}
