// controllo inserimento genius
function controllacampi1()
{
 
	if (document.moduli.nome.value.length<3)
     {
        alert("scrivi il tuo Nome");
	    document.moduli.nome.value="";
	    document.moduli.nome.focus();
	 return false;
	 }
	 
	 if (document.moduli.email.value.indexOf('@',0) == -1)
	  {
		 alert("Email in formato errato");
		 document.moduli.email.value="";
		 document.moduli.email.focus();
		 return false;
	  }
		
}

function video(str) 
{searchWin = window.open(str,'video','scrollbars=no,resizable=no,width=500,height=239,left=200,top=100,status=no,location=no,toolbar=no');
}
function recupero_dati(str) 
{searchWin = window.open(str,'recupero_dati','scrollbars=no,resizable=no,width=500,height=250,left=200,top=100,status=no,location=no,toolbar=no');
}

//controllo step1
function controllacampi()
{
   if (document.passouno.nome.value.length<3)
    {
        alert("scrivi nome e cognome");
	    document.passouno.nome.value="";
	    document.passouno.nome.focus();
	 return false;
	 }
	 
	if (document.passouno.ind.value.length<3)
     {
        alert("scrivi un indirizzo");
	    document.passouno.ind.value="";
	    document.passouno.ind.focus();
	 return false;
	 }
	 
	if (document.passouno.citta.value.length<3)
     {
        alert("scrivi la cittą");
	    document.passouno.citta.value="";
	    document.passouno.citta.focus();
	    return false;
	 }

	if (document.passouno.cap.value.length<5)
     {
        alert("scrivi il CAP");
	    document.passouno.cap.value="";
	    document.passouno.cap.focus();
	    return false;
	 }	
	 
	if (document.passouno.prov.value.length<2)
     {
        alert("scrivi la provincia");
	    document.passouno.prov.value="";
	    document.passouno.prov.focus();
	    return false;
	 }	
	 
	if (document.passouno.picf.value.length<3)
     {
        alert("scrivi la Partita Iva");
	    document.passouno.picf.value="";
	    document.passouno.picf.focus();
	    return false;
	 }
	 
	 if (document.passouno.cf.value.length<3)
     {
        alert("scrivi il codice fiscale");
	    document.passouno.cf.value="";
	    document.passouno.cf.focus();
	    return false;
	 }
	 	  
	if (document.passouno.tel.value.length<3)
     {
        alert("scrivi il Telefono");
	    document.passouno.tel.value="";
	    document.passouno.tel.focus();
	    return false;
	 }
	 
	if (document.passouno.pre_cell.value.length<3)
     {
        alert("scrivi il prefisso del cellulare");
	    document.passouno.pre_cell.value="";
	    document.passouno.pre_cell.focus();
	    return false;
	 }
	 
	if (document.passouno.num_cell.value.length<6)
     {
        alert("scrivi il numero del cellulare");
	    document.passouno.num_cell.value="";
	    document.passouno.num_cell.focus();
	    return false;
	 }
	 
	 if (document.passouno.email.value.indexOf('@',0) == -1)
	  {
		 alert("Email in formato errato");
		 document.passouno.email.value="";
		 document.passouno.email.focus();
		 return false;
	  }
		
}
