<!--
function valida(theForm){
	if (theForm.sId.value=="" ){
		alert('Para inválido.');
		theForm.sId.focus();
		return (false);
	}
	if (theForm.nombre.value=="" ){
		alert('Nombre inválido.');
		theForm.nombre.focus();
		theForm.nombre.select();
		return (false);
	}
	if (!valMail(theForm.email)){
		alert("Email inválido");
		theForm.email.focus();
		theForm.email.select();
		return (false);
	}
	if (theForm.mensaje.value=="" ){
		alert('Mensaje inválido.');
		theForm.mensaje.focus();
		theForm.mensaje.select();
		return (false);
	}
		
	theForm.flg.value='1';
	return (true);
}
//-->
