function popupHelp(url, w, h, scroll) {
   if ("" + scroll == "undefined") {
     scroll = "no";
   }
   var options = "width=" + w + ",height=" + h +",";
   options += "resizable=no,scrollbars=" + scroll + ",status=no,";
   options += "menubar=no,toolbar=no,location=no,directories=no";
   var newWin = window.open(url, 'VBpopupHelp', options);
   newWin.focus();
   return false;
}

