//documento JS

window.history.forward();

function openSimulacion()
{
	openHogar(VALUE_SIMULACION, HTTP_PATH);
}

function openInformacion()
{
	openHogar(VALUE_INFORMACION, HTTP_PATH);
}

function openContratacion()
{
	openHogar(VALUE_CONTRATACION, HTTPS_PATH);
}

function openRecuperacion()
{
	openHogar(VALUE_RECUPERACION, HTTPS_PATH);
}


function openHogar(proceso, path)
{
	var sProceso = "?"+KEY_PROCESO+"="+proceso;
	window.location = path +"/jsp/Hindex.jsp"+ sProceso;
}
function openAltaInicio()
{
	window.location = HTTP_PATH;
}


//documento JS

function muestroOcultoContenido(verParametro){
	var elementos = document.getElementById('submenu'+verParametro);		

	oculta('menu');

	if(elementos.style.display='none'){
		elementos.style.display='';
	}else{elementos.style.display='none'}

}
function oculta (menu) {
	if (document.getElementById && document.createTextNode)
	{
		var tables=document.getElementsByTagName('tr');
		for (var i=0;i<tables.length;i++)
		{
			if(tables[i].title==menu)
			{
			   tables[i].style.display='none'; 	
			}
		}
	}
}

