
// open (popup) help window
function openHelp(url)
{
   helpWin =
      window.open(url, 'Help',
         'toolbar=no,location=no,menubar=no,width=750,height=500,scrollbars=yes');

   helpWin.focus();
}


