/*
 Javascript function for Help window.

 $Revision: $
 */

var helpWindow;
  
 function F_showHelp(target)
 {
    window.status = 'Displaying help for '+target;
    helpWindow = window.open('Help.html#'+target, 'Help', 'width=800,height=800,resizable=yes,scrollbars=yes,directories=no,menubar=no,copyhistory=no,location=no');
    /* Reposition if the popup blocker ran */
    helpWindow.location = 'Help.html#'+target;
    helpWindow.focus();
 }
