﻿function ShowHelp(strWebPage) {
  /************************************************************************************************
  Purpose : Displays the "Help" popup window
  ***********************************************************************************************/

  var strConfig = "toolbar=no,menubar=no,scrollbars=yes,location=no,directories=no,status=no,resizable=yes,height=400,width=600";
  window.open(strWebPage, "ShowHelp", strConfig);
}


