<!-- Begin hiding script from older browsers

function toolTips(evt,currElem) {
// Creates the tool tip for Internet Explorer
  if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
    tipWin = eval("document.all." + currElem + ".style");
// Number at end of next line indicates the number of pixels from the bottom of the cursor the tip is
    tipWin.top = parseInt(evt.y)+20;
// Number at end of next line indicates the number of pixels to the left of the cursor the tip is
    tipWin.left = Math.max(2,parseInt(evt.x)-40);
    tipWin.visibility = "visible";
    tipWin.status = "";
  }
// Creates the tool tip for Netscape
  if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 4)) {
    tipWin = eval("document." + currElem);
// Number at end of next line indicates the number of pixels from the bottom of the cursor the tip is
    tipWin.top = parseInt(evt.pageY)+2;
// Number at end of next line indicates the number of pixels to the left of the cursor the tip is
    tipWin.left = Math.max(2,parseInt(evt.pageX)+15);
    tipWin.visibility = "visible";
    tipWin.status = "";
  }
}


function tipDown(currElem) {
// Closes the tool tip for Internet Explorer
  if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
    tipWin = eval("document.all." + currElem + ".style");
    tipWin.visibility = "hidden";
  }
// Closes the tool tip for Netscape
  if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 4)) {
    tipWin = eval("document." + currElem);
    tipWin.visibility = "hidden";
  }
}

// End hiding script from older browsers -->
