function changeDisplayState (id) 
{
    e=document.getElementById(id);
    
    
	
		var lista = new Array();
		var lista = document.getElementsByTagName("ul");
		var i; 
		for (i=0; i<lista.length; i++) 
		{ 
			if(lista[i].id.indexOf("almenu_") > -1)
			{
				lista[i].style.display='none';
			}
		}	
		e.style.display = 'block' 
	
    
}

function adjustFrame()
{
	window.frames.IFrame1.scrollBy(0,900);
	currTop = window.frames.IFrame1.document.body.scrollTop;
	if (currTop > 0)
	{
		currHeight = document.getElementById('dynFrame').getAttribute('height');
		currHeight++;
		document.getElementById('dynFrame').setAttribute('height',currHeight);
		adjustFrame();
	}
}

function setHeight()
{
	document.getElementById('dynFrame').setAttribute('height',0);
	adjustFrame();
}
