
function openHelp(ntopic)
{
  var hlpWindow = null;
  hlpWindow = window.open("popHelp.asp?faq="+ntopic, "Help", "scrollbars=1,width=290,height=420");

  if (hlpWindow.window.focus)
     hlpWindow.window.focus();

  return;
}
function openWin(theURL,winName,features,nWidth,nHeight) {
//--------------------------------------------
  features += ",width="+nWidth+",height="+nHeight+",left="+String(window.screen.Width/2-(nWidth/2))+",top="+String(window.screen.Height/2-(nHeight/2)-10)
    window.open(theURL,winName,features);
}

