function LBar_showList(id) {
  if (id) {
    document.form.LBar_list.value = id;
    document.form.action_performed.value = 'LBar_list';
    if (document.form.LBuck_active_id)
      document.form.LBuck_active_id.value = '0';
    submit_form();
  }
}

function LBar_findPos(num){
  //alert(num);
  //does not work for Netscape 4
  var x=0; var y=0;
  var el, temp;
  el = bw.ie4?document.all["LBar_menu"+num+"_div"]:document.getElementById("LBar_menu"+num+"_div");
  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;
  x-=1;//FIX
  y-=6;//FIX

  //Returning the x and y as an array
  return [x,y];
}

