// open new window
function openWindow(url, name, rs, sb, w, h) {
  var resize = "";
  if (rs) {
    resize = "resizable,";
  }
  popupWin = window.open(url, name, 'scrollbars=' + sb + ',menubar=no,' + 'width=' + w + ',height=' + h);
  popupWin.focus();
}
