
function testform() {
  
  if(document.forms[0].elements[2].value==""||document.forms[0].elements[2].value=="account@server.it") {
    document.forms[0].elements[2].value="account@server.it";	
    alert("Si prega inserire il proprio indirizzo e-mail nell'apposita casella contrassegnata da E-mail. Grazie");
    }
	else 
	 if (document.forms[0].elements[2].value!="" && document.forms[0].elements[2].value!="account@server.it")
	 { var trovato=false;
	   var ntrov = 0
	   var punto=false;
	   var npunto = 0
	   var indirizzo=document.forms[0].elements[2].value;
	   for (var i=0; i<=indirizzo.length;i++)
		 {if (indirizzo.substring(i,i+1)=="@")
		 	{trovato=true;
			 ntrov=i+3
			 };
		  if (indirizzo.substring(i,i+1)==".")
		 	{punto=true;
			 npunto=i
			 };	
		 };
	 	if (trovato==false || npunto==false || npunto<ntrov){
		alert("Inserire correttamente l'indirizzo e-mail! Grazie");
		}
	 }
}

function check_Contacts()
{
	if ((document.getElementById("realname").value!="") && (document.getElementById("paese").value!=""))
	{
		
			document.frmEmail.submit();
	
	}else{
		alert("Inserire tutti i campi obbligatori.");
	}
}
