var numLists = 1;
function doCheckCount(ccObj){ if(ccObj.checked) numLists = numLists + 1; else numLists = numLists - 1; }
function CheckSS(){ theFrm = document.frmSS;
hasDot = theFrm.email.value.indexOf("."); hasAt = theFrm.email.value.indexOf("@");
if(theFrm.name.value == ''){ alert('Introduce tu nombre.'); theFrm.name.focus(); return false; } if(theFrm.surname.value == ''){ alert('Introduce tu apellido.'); theFrm.surname.focus(); return false; } if(hasDot + hasAt < 0){ alert("Introduce una direccion email valida."); theFrm.email.focus(); theFrm.email.select(); return false; } if(numLists == 0){ alert("Selecciona una lista de correo a la que suscribirte."); return false; } return checkForm(); }