function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

//Set variables

  var MenuIsUp=0;  var throb=0;   var mhovIsUp = 0;  var mhovLastUp = 0;  var mhovering = 0;
  var lhovering=0;  var timer = "";  var tid;
  //var msie = ( (/msie/i.test(navigator.userAgent)) && (!/opera/i.test(navigator.userAgent)) )?true : false;
 

  
// Taskbar Menu Mouseovers
  function mhov(id) {
    tid = "hov" + id;
    lhovering = 1;
    clearTimeout(timer);
    if (MenuIsUp == 0){
      if (mhovIsUp == 0){
        setTimeout("raisemhov()", 500);
      }
      else {
        document.getElementById(mhovLastUp).style.visibility = "hidden";
        raisemhov();
      }
    }
  } 
  
  function munhov(){
    lhovering = 0;
    timer = setTimeout ( "mhovkill()", 250 );
  }
  
  function mhovkill(){
    if (mhovering == 0 && lhovering == 0) {
      lowermhov();
    }
  }
 
  function raisemhov(){
    // if still over menu.
    if (lhovering==1){
      document.getElementById(tid).style.visibility = "visible";
      mhovLastUp = tid;
      mhovIsUp = 1;
    }
  }
  
  function lowermhov(){   
    if (tid){document.getElementById(tid).style.visibility = "hidden";}
    mhovLastUp = 0;
    mhovIsUp = 0; 
  }
  
  function hovmhov(){
    mhovering = 1;
  }
  
  function unhovmhov(){
    mhovering = 0;
    munhov();
  }

