	/*function supp()
	{
	if(screen.width<=800)
	if(screen.height<=600)
	}
*/


	var clockID = 0;

	function UpdateClock()
	{
	if(clockID)
		{
			clearTimeout(clockID);
			clockID  = 0;
		}
	 var tDate = new Date();
	 var ore=tDate.getHours();
	 var minuti=tDate.getMinutes();
	 var secondi=tDate.getSeconds();
	 if (ore.toString(10).length==1) {ore ="0"+ore};
	 if (minuti.toString(10).length==1) {minuti ="0"+minuti};
	 if (secondi.toString(10).length==1) {secondi ="0"+secondi};
	 document.all.theTime.value = "" + ore + ":" + minuti + ":" + secondi;
	 clockID = setTimeout("UpdateClock()", 1000);
	}

	function StartClock()
	{
		clockID = setTimeout("UpdateClock()", 500);}
		function KillClock()
			{
			if(clockID) {clearTimeout(clockID);clockID  = 0;
			}
	}

	function apri()
		{	myMsg=open("motorericerca.htm","Prova","screenX=0,screenY=0,resizable=0,innerwidth=0,innerheight=0;outerwidth=0,outerheight=0,width=750,height=600,scrollbars=yes");
		};
