		function fulltime ()	{
			var time=new Date();
			var xm=time.getMinutes();
			var xs=time.getSeconds();
			var xh=time.getHours();
			if (xh < 10) xh = "0" + xh;
			if (xs < 10) xs = "0" + xs;
			if (xm < 10) xm = "0" + xm;
			document.getElementById("xh").innerHTML=xh;
			document.getElementById("xm").innerHTML=xm;
			document.getElementById("xs").innerHTML=xs;
			setTimeout('fulltime()',1000)
		}
		fulltime();