function printWin(www) {
	win = open(www,'printWin','width=840,height=500,toolbar=yes,menubar=yes,scrollbars=yes,copyhistory=no,status=no,resizable=yes,location=no');
	posY = screen.availHeight;
	posX = screen.availWidth;
	win.moveTo((posX/2)-420,(posY/2)-250);
	win.focus();
}
function openFlashMenu(menuHeight){
	 document.getElementById("flash_navigation").style.height = menuHeight + 'px';
}
function collapseFlashMenu(menuHeight){
 	document.getElementById("flash_navigation").style.height = menuHeight + 'px';
}
function cropHtmlMenu(menuHeight){
	var el = document.getElementById("navigation_tree");
	el.style.display = 'none';
	el.style.height = 0;
	var el2 = document.getElementById("nav_main");
	el2.style.display = 'none';
	el2.style.height = menuHeight + 'px';
	/*
	var el3 = document.getElementById("flash_navigation");
	el3.style.height = menuHeight + 'px';
	el3.style.paddingLeft = 0;
	*/
}