<!-- COPYRIGHT 2006 Studio 23® -->
<!-- Ogni uso anche se parziale della seguente pagina è reato. Tutti i diritti sono riservati.-->
<!--

function controllodatimail3(which)
{
 var pass = true;
 if (document.images)
  {
   for (i = 0;i < which.length; i++)
    {
	 var tempobj = which.elements[i];
     if (((tempobj.type == "text") && (tempobj.value == '')) || ((tempobj.type.toString().charAt(0) == "s") && (tempobj.selectedIndex == -1)))
      {
	   if ((tempobj.name == "telefono") || (tempobj.name == "paese") || (tempobj.name == "indirizzo"))	
	   {/*vuoto*/}
	   else
	    {
	     pass = false;
         break;
		}
      }
     if(tempobj.name == "mail")
      {
	   if ((tempobj.value.indexOf('@',0) == -1) || (tempobj.value.indexOf ('.',0) == -1))
 	   {
		for (a = 0;a < which.length; a++)
         {
	      var tempobj2 = which.elements[a];
		  if(tempobj2.name == "lingua")
           {
			if (tempobj2.value == "en")
			 alert("E-mail address must contain " + "the characters '@' and '.'\n" + "Must be youraddress@domain.state ");
			else
             alert("L'indirizzo e-mail deve contenere " + "i caratteri '@' e '.' \n" + "Deve essere del tipo tuoindirizzo@dominio.stato ")	;
			 break;
		   }
		 }
   	    return false;
   	   }
      }
    }
  }
 if (!pass)
 {
  for (a = 0;a < which.length; a++)
   {
    var tempobj2 = which.elements[a];
    if(tempobj2.name == "lingua")
     {
	  if (tempobj2.value == "en")
	   alert("The form isn't compiled correctly. Some information forgotten. ");
	  else
       alert("Non hai compilato correttamente il form. Alcune informazioni non sono state inserite. ");
	  break;
	 }
   }
  return false;
 }
  return true; 
}

//-->
