<!--
function blockError(){return true;}
window.onerror = blockError;


function sureDelete (psDesc, psItem) {

   if (confirm("Are you certain?  Do you really want to delete " + psItem + " " + psDesc + "?"))
      return true;

   else
      return false;
}


function openWin (pURL, pWidth, pHeight, pOptions)
{
   var sWidth = "";
   var sHeight = "";
   var sOptions = "";
   var sComma1 = "";
   var sComma2 = "";

   if (!pWidth)
      pWidth = 750;

   if (!pHeight)
      pHeight = 550;

   if (pWidth > 0)
      sWidth = "width=" + pWidth.toString();

   if (pHeight > 0)
      sHeight = "height=" + pHeight.toString();

   if (sWidth != ""  &&  sHeight != "")
      sComma1 = ",";

   if (!pOptions)
      if (pOptions != "none")
         sOptions = "left=20,top=20,menubar=no,location=no,toolbar=no,scrollbars=yes,status=no,resizable=yes";

   if (sOptions == "")
      sOptions = "menubar=yes,location=yes,toolbar=yes,scrollbars=yes,resizable=yes";

   if (sOptions != "" && (sWidth != ""  ||  sHeight != ""))
      sComma2 = ",";

   var wWin = window.open (pURL, "_popper", sWidth + sComma1 + sHeight + sComma2 + sOptions);

   wWin.focus ();

   return;
}

// -->



