// pass in the name of the HTML bookmark or null
function openHelpWin(bookmark) {
  var url = '/budgetWeb/html/en/common/helpPopUp.html#' + bookmark;
  MM_openBrWindow(url,'Help','height=300,width=450,directories=no,toolbar=no,resizable=yes,menubar=no,scrollbars=1');
}

// pass in the name of the HTML bookmark or null
function openLocPagesHelpWin(bookmark) {
  var url = '/budgetWeb/html/en/common/locationsHelpPopUp.html#' + bookmark;
  MM_openBrWindow(url,'Help','height=300,width=450,directories=no,toolbar=no,resizable=yes,menubar=no,scrollbars=1');
}

// pass in the name of the HTML bookmark or null
function openBEHelpWin(bookmark) {
  var url = '/budgetWeb/html/en/common/BEhelpPopUp.html#';
  MM_openBrWindow(url,'Help','height=300,width=450,directories=no,toolbar=no,resizable=yes,menubar=no,scrollbars=1');
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  var theWin = window.open(theURL,winName,features);
  theWin.focus();
}
