// JavaScript Document
function cargar_olvidado(id,id2,id3){
		document.getElementById(id).style.display='block';
		document.getElementById(id2).style.display='none';
		document.getElementById(id3).style.display='none';
}

function enviar_recuperacion(formulario,campo_oculto,accion2){
		form=document.forms[formulario];
		if(!document.getElementById(campo_oculto).value){
			alert('Cubra debidamente el campo asignado.');
			document.getElementById(campo_oculto).focus();
		}
		else{
			form.accion2.value=accion2;
			form.valor.value=document.getElementById(campo_oculto).value;
			form.submit();
		}
}

function enviar_respuesta(formulario,mensaje){
		form=document.forms[formulario];
		if(!form.input_text.value.length){
			alert(mensaje);
			form.input_text.focus();
		}
		else{
			form.submit();
		}
}
