function openBrWin(wWidth, wHeight, wPath) {
  var vCenter = screen.height / 2 - wHeight / 2;
  var hCenter = screen.width / 2 - wWidth / 2;
  window.open(wPath, "", "width=" + wWidth + ", height=" + wHeight + ", top=" + vCenter + ", left=" + hCenter + ", directories=no, location=no, menubar=no, resizable=no, scrollbars=yes, status=no, toolbar=no");
}