<!--
function verEmail(stringa)
   {
   if (stringa.search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/) != -1)
      return true;
    else
      return false;
   }

function LunghezzaMax(campo)
	{
	if ((campo.value.length>300)== true )
		return true;
	else
		return false;	
	}

function nome(stringa)
   {
   if (stringa.value != "")
      return false;
   else
      return true;
   }


function verif(form)
   {
   
	 
	 
	 if (nome(form.nome) == true) 
	 {
	 alert("Nombre?"); 
	form.nome.value=""; 
	form.nome.focus();
	return false;
	 }
	 
	 if (nome(form.societa) == true) 
	 {
	 alert("Empresa?"); 
	form.societa.value=""; 
	form.societa.focus();
	return false;
	 }
	 
	  if (verEmail(form.email.value) == false)
	   {
       alert("email?.");
		form.email.value ="";
       form.email.focus();
       return false;
       }
	   
	    if (nome(form.richiesta) == true) 
	 {
	 alert("Consulta?"); 
	form.richiesta.value=""; 
	form.richiesta.focus();
	return false;
	 }
	 	
	 return true;
   }
//-->
