function submitForms()
   {
   if ( (isTesto() ) )
        { 
         return true;
         } 
   else
      return false;
   }
function isTesto()
   {
   var str =  document.cont.Testo.value;
   if (str == "")
      {
      alert("TUONET.com   --> ERRORE\n\nInserisci il numero telefonico.")
      document.cont.Testo.focus();
      return false;
      }
  for (var i = 0; i < str.length; i++) 
      {
      var ch = str.substring(i, i + 1);
      if (((ch < "1" || "9" < ch) && ch != '0')) 
         {
         alert("TUONET.com   --> ERRORE\n\nInserisci solo numeri.");
         document.cont.Testo.select();
         document.cont.Testo.focus();
         return false;
         }
		if (document.cont.Testo.value.length < 6)
  {
    alert("TUONET.com   --> ERRORE\n\nInserisci almeno 6 numeri.");
    document.cont.Testo.focus();
    document.cont.Testo.select();
    return false;
  }
      }
      return true;

   }
