function fPopUp(url){
	window.open(url, "win", "width=400, height=250");
}

function fOpenImage(nGalleryID){
	window.open("/gallery_image.asp?id="+nGalleryID, "win", "width=450, height=550");
}

var oLastClicked, oLastChild;

function fMenu(nMenuID, nChildID){
	try{
		if(oLastClicked && nMenuID!=oLastClicked){
			document.getElementById("oRightItem"+oLastClicked).style.backgroundColor="#dadfdc";
			if(nChildID)document.getElementById("oRightSubItem"+oLastChild).style.backgroundColor="#dadfdc";
			document.getElementById("oRightMenu"+oLastClicked).style.display="none";
		}

		if(nMenuID==oLastClicked){
			document.getElementById("oRightItem"+nMenuID).style.backgroundColor="#dadfdc";
			if(nChildID)document.getElementById("oRightSubItem"+nChildID).style.backgroundColor="#dadfdc";
			document.getElementById("oRightMenu"+nMenuID).style.display="none";
			oLastChild=null;
			oLastClicked=null;
		}
		else{
			document.getElementById("oRightItem"+nMenuID).style.backgroundColor="#dc7816";
			if(nChildID)document.getElementById("oRightSubItem"+nChildID).style.backgroundColor="#dc9857";
			document.getElementById("oRightMenu"+nMenuID).style.display="block";
			oLastChild=nChildID;
			oLastClicked=nMenuID;
		}
	}catch(e){}
}
