/**
*
* Libreria para el control del menu desarrollada por Lautaro Bonetto.
*
*/

/**
* FUNCION DE ENCENDIDO DE MENUES
*/
function MenuOn(Objeto)
{
	document.getElementById(Objeto).style.visibility = 'visible';
	if (Objeto.lastIndexOf('_') > 0)
	{
		MenuOn(Objeto.substr(0,Objeto.lastIndexOf('_')));
	}
}

/**
* FUNCION DE APAGADO DE MENUES
*/
function MenuOff(Objeto)
{
	document.getElementById(Objeto).style.visibility = 'hidden';
	if (Objeto.lastIndexOf('_') > 0)
	{
		MenuOff(Objeto.substr(0,Objeto.lastIndexOf('_')));
	}
}
