// JavaScript Document
	if (top.location != document.location) top.location = document.location;
	var Open = ""
	var Closed = ""
	if(document.images){
			Open = new Image(9,9)
			Closed = new Image(9,9)
			Open.src = "{#app_url#}/public/images/coll.gif";
			Closed.src ="{#app_url#}/public/images/exp.gif";
	}
	
	function showhide(whatstr,whatstr2){
	
	var what=document.getElementById(whatstr);
	var what2=document.getElementById(whatstr2);
		
		if (what.style.display=='none')
		{
			what.style.display='';
			if(whatstr == "menu1outline")
			{
				//var close = document.getElementById("menu1outline2");
				//var closeimg = document.getElementById("menu1sign2");
				//close.style.display = "none";
				//closeimg.src = Closed.src;
			}
			else
			{
				var close = document.getElementById("menu1outline");
				var closeimg = document.getElementById("menu1sign");
				close.style.display = "none";
				closeimg.src = Closed.src;
			}
			what2.src=Open.src
		}
		else
		{
			what.style.display='none';
			what2.src=Closed.src
		}
	
	}
	function move(page) {
		window.location = page;
	}

