// JavaScript Document
function EnviarOlvido() {
		if (document.formOlvidoUsr.email.value=='') {
				alert("Por favor ingrese el E-mail.");
				document.formOlvidoUsr.email.focus();
				return;
		}
		document.formOlvidoUsr.submit();
}
function EnviarOlvidoPregunta() {
		if (document.formOlvidoUsr.respuesta.value=="") {
				alert("Por favor ingrese la respuesta a la pregunta.");
				document.formOlvidoUsr.respuesta.focus();
				return;
		}
		document.formOlvidoUsr.submit();
}
