function OpenMenu(Gelen){
		
		if(document.getElementById(Gelen).style.display == 'none')
		{
			document.getElementById(Gelen).style.display = '';
		}else{
			document.getElementById(Gelen).style.display = 'none';
		}	
	}


function FindCurrentPage(prm)
{
	 var oItm = document.getElementById("Nv_" + prm);
	 if(oItm)
	 {
		// oItm.className="current";
		 var prnt = oItm.parentNode;
		 while(prnt)
		 {
		 //alert(prnt.nodeName);
			 if(prnt.nodeName=="UL")
			 {
				 prnt.style.display="";
				 var ps = prnt.previousSibling;
			//	 if(ps)
			//	 ps.className="current";
			 }
			 else if(prnt.nodeName=="DIV")
			 {
			 break;
			 }
		 prnt = prnt.parentNode;
		 }
		
		
		// oItm.className="current";
		// var prn = FindParent(oItm);
	
	 }
}

