	function GoSearch()
	{
		var ContentText = document.getElementById("txtCerca").value
		
		if (ContentText=="")
		{
			alert("Inserire il contenuto della ricerca nella casella")
			document.getElementById("txtCerca").focus();
			return
		}

		var url = "ListaProdotti.asp?SearchFromHomePage=" + ContentText + "&FromHomePage=yes"
		document.location.href = url
	}


	function InvioGoSearch(x)
	{
		var x = window.event.keyCode
		if (x == 13)  
		{
			GoSearch();
		}
	}