	function EmailCheck(email)
{
var ok=true
var error=""
if ((email.length>0) && ((email.lastIndexOf("@")==-1) || (email.lastIndexOf(".")==-1))) ok = false
if (!(ok)) error="non specificata correttamente\n -  Il formato corretto è: esempio@tin.it"
return error
}

	function checkIva()
{
	var valore = document.forms[0].elements['txtIva'].value;
	if (valore.length<11)
	{
		alert('La lunghezza della partita iva non pu&ograve; essere inferiore a 11');
		return false;
	}
	else
		if (isNaN(valore))
		{
			alert('La partita iva deve contenere un valore di 11 numeri');
			return false;
		}	
}

function formRst()
	{
	var ns = navigator.appName == "Netscape";
	if (ns) document.forms[0].reset()
	           else document.forms[0].reset()

	}
	
	function Visualizza()
			{
				var controllo=document.forms[0].elements['sltNazioni'];
				var nazione=controllo.options[controllo.selectedIndex].value;
				if (nazione!="ITALY")
					document.getElementById('divItalia').style.visibility="hidden";
				else
					document.getElementById('divItalia').style.visibility="";
			}
			
			
			function CambiaAccessorio(tipoAcc)
			{
				var tipo=document.forms[0]['tipo'].value;
				var prodotto=document.forms[0]['prodotto'].value;
				document.forms[0]['accessorio'].value=tipoAcc;
				document.forms[0].action='accessori.aspx?tipo='+tipo+'&idProdotto='+prodotto;
				document.forms[0].submit();
			}
			
			
			
			function CambiaColore(tipoCol)
			{
				var tipo=document.forms[0]['tipo'].value;
				var prodotto=document.forms[0]['prodottoid'].value;
				if (tipoCol==4)
					document.forms[0]['anta'].value=1;
				else
					document.forms[0]['anta'].value=0;
				document.forms[0].action='descrizione.aspx?tipo='+tipo+'&idProdotto='+prodotto+'&pag=3';
				document.forms[0].submit();
			}
			

function Apri(url)
{
	window.open(url,'popup','width=479,height=340,resizable=0,scrollbars=0,menubar=0,toolbar=0');
}	


function ApriScheda(url)
{
	window.open(url,'popup','resizable=1,scrollbars=0,menubar=0,toolbar=0');
}			