<!--

//Extra code to find position:
function findPos(){
    x=0; y=0; var el,temp
    el = bw.ie4?document.all["menu"]:document.getElementById("menu");
    if(el.offsetParent){
      temp = el
      while(temp.offsetParent){ //Looping parent elements to get the offset of them as well
        temp=temp.offsetParent; 
        x+=temp.offsetLeft
        y+=temp.offsetTop;
      }
    }
    x+=el.offsetLeft
    y+=el.offsetTop
  //Returning the x and y as an array
  return [x,y]
}
pos = findPos();
var incrTop = bw.ie?2:1;

oM.fromLeft=pos[0];
oM.fromTop=pos[1]+incrTop;
oM.onresize="pos = findPos(); oM.fromLeft=pos[0]; oM.fromTop=pos[1]+incrTop;";
oM.menuPlacement=0;
//oM.menuPlacement=new Array(pos[0],"+193","+286")

oM.construct();
hideFocus();

//-->
