// overlib flag
// to use the help insert:
//   <DIV id="overDiv" style="position:absolute; top:-1px; left:-1px; z-index: 999;"></DIV>
//   <script src="../includes/overlib.js" language="JavaScript"></script>
// into page after the body tag
var overLib_loaded = false;
var useHelp = false;

function setHelp(status){
  if (overLib_loaded){
    useHelp = status ;
    nd();
  }
}

function mouseOver(text){
   window.status=text;
    if (useHelp) dlc(text,' Info'); // overlib function
   return true;
}

function mouseOut(){
   window.status='';
    if (useHelp) nd(); // overlib function
   return true;
}
