var helpwin;

function helplink(href)
{
  helpwin = window.open(href, 'help', 'width=800, height=500, menubar=no, toolbar=no, scrollbars=yes');
  if (helpwin.window)
  {
    helpwin.focus();
  }
  return true;
}


