Ya l tengo, por si a alguine le interesa:
Código HTML:
<script type="text/JavaScript">
<!--
function pregunta(valor){
//valido el nombre
if (document.contacto.nombre.value.length==0){
alert("Por favor ingrese su Nombre completo")
document.contacto.nombre.focus()
return false;
}
//valido el email
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(valor)){
return (true)
} else {
alert("La dirección de email es incorrecta.");
return (false);
}
return alert('Gracias por contactarnos');
}
//-->
</script>
<form name="contacto" action="" method="post">
Nombre:
<br />
<input type="text" name="nombre" />
<br />
Email:
<br />
<input type="text" name="email" />
<br />
Mensaje:
<br />
<textarea name="mensaje" cols="45" rows="5"></textarea>
<input type="submit" name="submit" value="Enviar" onclick="return pregunta(this.form.email.value)" />
</form>
Gracias a todos