//*****************************************************************************
function gestioncapasmenu() 
{
  var srcId, srcElement, targetElement;
  var targett;
  srcElement = window.event.srcElement;
  if (srcElement.className.toUpperCase() == "LEVEL1") 
  {
		 srcID = srcElement.id.substr(0, srcElement.id.length-1);
		 targetElement = document.all(srcID + "s");//Controlamos las Capas
		 
	         targett = document.all('OUT1s');
			 if (targetElement != targett) 
     		     targett.style.display = "none";
				 
		     targett = document.all('OUT2s');
			 if (targetElement != targett) 
     		     targett.style.display = "none";
				 
			 targett = document.all('OUT3s')
			 if (targetElement != targett) 
    		     targett.style.display = "none";
				 
			 targett = document.all('OUT4s')
			 if (targetElement != targett) 
    		     targett.style.display = "none";
		 
//alert(targetElement.style.display)
	if (targetElement != null)
	{
  		if (targetElement.style.display == "none") //No visible
		{			
		targetElement.style.display = ""; //Visible
		}
		else
		{
		targetElement.style.display = "none"; 
		}
	}
  }
}
//document.onclick = gestioncapasmenu;
//*****************************************************************************