function chequear_datos(witch){
	if(witch.nombre.value==""){alert ("Debe completar el campo Nombre"); return (false);}
	if(witch.apellidos.value==""){alert ("Debe completar el campo Apellidos"); return (false);}
	patron=/^(\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+)*$/;
	if(witch.email.value==""){alert ("Debe completar el campo E-mail"); return (false);}	
	if((witch.email.value!="") && (!patron.test(witch.email.value))){alert ("El e-mail es incorrecto"); return (false);}	
	if(witch.comentario.value==""){alert ("Debe completar el campo Comentario"); return (false);}
	return (true);
}


