<!--



	function openNewWindow(URLtoOpen, windowName, windowFeatures) { 
  		newWindow=window.open(URLtoOpen, windowName, windowFeatures);
	}



//Toggle hiddenshowMenu sidebar
	function hiddenshowMenu(name){
	
		var itemID = name + '_items';
	
		if( document.getElementById(itemID).style.display != "none" ){
		
			document.getElementById(itemID).style.visible = "hidden";
			document.getElementById(itemID).style.overflow = "hidden";
			document.getElementById(itemID).style.display = "none";
			document.getElementById(itemID).style.height = "0px";
			//document.getElementById(itemID).style.padding = "0px 0px 1px 0px";	

 			document[name + '_tree'].src = "http://mwillms.de/blog/include/img/tree-plus.png";
			

		}
		else{

			document.getElementById(itemID).style.display = "block";
			//document.getElementById(itemID).style.overflow = "auto";
			document.getElementById(itemID).style.height = "";
			//document.getElementById(itemID).style.padding = "4px 0px 8px 0px";

			document[name + '_tree'].src = "http://mwillms.de/blog/include/img/tree-minus.png";
			
		
		}
	
	}

//-->
