error_nombre="Il nome è obbligatorio"; error_email="L'indirizzo e-mail è obbligatorio"; var expr_noemail = /(@.*@)|(\.\.)|(@\.)|(\.@)|(^\.)|(www\.)|(WWW\.)/; var expr_email = /^[a-zA-Z0-9._\-']+@[a-zA-Z0-9._\-]+\.[a-zA-Z]{2,4}$/; function comprobaciones_contacto() { var forms = document.getElementsByTagName('form'); var formulario = forms[0]; document.getElementById('Nombre').className ="caja_form"; document.getElementById('Email').className ="caja_form"; if (formulario.Nombre.value.length == 0) { document.getElementById("errores").innerHTML=error_nombre; document.getElementById('Nombre').className ="caja_form_error"; formulario.Nombre.focus(); return false; } if (expr_noemail.test (formulario.Email.value) || !expr_email.test (formulario.Email.value)) { document.getElementById("errores").innerHTML=error_email; document.getElementById('Email').className ="caja_form_error"; formulario.Email.focus(); return false; } formulario.submit(); }