<!-- 

// Sniffer
OP = (window.opera) ? 1:0; 
IE4 = (document.all && !OP) ? 1:0; 
IE5 = (IE4 && document.getElementById) ? 1:0; 
NN4 = (document.layers) ? 1:0; 
NN6 = (!IE4 && !NN4 && document.getElementById) ? 1:0; 
NOT = (!OP && !IE4 && !IE5 && !NN4 && !NN6) ? 1:0;

window.status = "Nome del sito"

function j() {
  return;
}

function validate_Mail() {
  var email_reg_exp = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
  if (!email_reg_exp.test(document.form1.email.value)) {
    alert("Email non valida") ;
    return false;
  }
}


function validate_gb(){
  if (!document.gb.mittente.value) {
    alert("Inserire Nome e Cognome o Nickname");
    return false;
  } else {
    if (document.gb.SN.value == "SI") {
      if (!document.gb.posta.value) {
        alert("Inserire Email") ;
        return false;
      }
      
    }    
  }      
}


function imposta(ss){
  document.gb.SN.value = ss ;
}
//-->