<!-- hide from old browsers
// open new window
function openWindow(url, name, rs, w, h) {
  var resize = "";
  if (rs) {
    resize = "resizable,";
  }
  popupWin = window.open(url, name, 'scrollbars,' + resize + 'width=' + w + ',height=' + h);
  if (!popupWin.opener) {
    popupWin.opener = self;
  }
  popupWin.focus();
}
// -->
