<!--

		function findPos(el, menu) {
			
   	 		var xPos    = 0;
   		 var yPos    = 0;
   		 if (document.layers) { 
       		 // simply done with nc4x
       		 //
       		 xPos = el.x;
       		 yPos = el.y;
   		 	} else { 
       		 // loop through all offsets
    	   	 //
       			while(el){
       	   	  xPos += el.offsetLeft;
      	   	   yPos += el.offsetTop;
           	 	el  = el.offsetParent;
           	}
        	
			document.getElementById(menu).style.left = xPos;
			document.getElementById(menu).style.top = yPos;
   	 }
   	 return {xPos: xPos, yPos: yPos};
	}
	
	function MenuOut(menu)
	{
		document.getElementById(menu).style.left = -500;
		document.getElementById(menu).style.top = -500;
	}


//-->
