        
<!-- Activate Cloaking Device
function submitForms()
   {
   if ( (isTesto() ) && (isPref()) && (isTelefono()))
        { 
         return true;
         } 
   else
      return false;
   }


function isTesto()
   {
   var str = document.cont.Testo.value; t1=str;
   if (str == "")
      {
      alert("TUONET.COM   --> EMAIL-ERRORE\n\n Inserisci il TESTO.")
      document.cont.Testo.focus();
      return false;
      }
 return true
   }

function isPref()
   {
   var str = document.cont.Pref.value; t2=str;
    if (str == "")
      {
    alert("TUONET.COM   --> EMAIL-ERRORE\n\n Inserisci il DESTINATARIO.")
    document.cont.Pref.focus();
    return false;
      }
   
   return true;
   }

function isTelefono()
   {
   var str =  document.cont.Telefono.value; t3=str;
   if (str == "")
      {
      alert("TUONET.COM   --> SMS-ERRORE\n\n Inserisci il MITTENTE")
      document.cont.Telefono.focus();
      return false;
      }
  
      
if (!confirm("                            TUONET.COM --> verifica dei dati immessi\n\n_________________________________________________________            \n\n DESTINATARIO:   "+t2+"\n\n MITTENTE:   "+t3+"\n\n TESTO DELLA EMAIL:\n\n "+t1+"\n\n_________________________________________________________")) 
{ document.cont.Testo.focus();
  return false; }

      return true;
   }

