<!--

function _PopNewWindow(pUrl, pTitle, pSetting)
{
 var win = null;
 if (pSetting == "NORMAL")
     {
       win = window.open(pUrl, pTitle);
     }
  else if (pSetting == "SAME")
     {
       document.location = pUrl;
       win = null;
     }
  else if (pSetting == "APPLICATION")
     {
       win = window.open(pUrl, pTitle, "toolbar=0,location=1,directories=0,status=1,menubar=0,scrollbars=1,resizable=1");
     }
  else if (pSetting == "FAQ")
     {
       win = window.open(pUrl, pTitle,"width=550,height=450,left=240,top=0,scrollbars=yes,resizable=yes");

     }
  else if (pSetting == "HELP")
     {
       win = window.open(pUrl, pTitle, "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1");
     }

  if (pSetting != "SAME" && win != null && win && !win.closed) 
     { 
       win.focus();
     }
}

//--> 

