// JavaScript Document

function openWindow(url, name, rs, w, h) {
  var resize = "";
  if (rs==false) {
    resize = "resizable=no,";
  }
  popupWin = window.open(url, name,'' + resize + 'width=' + w + ',height=' + h+',toolbar=yes, resizable=yes, scrollbars=yes, status=yes');

  window.name = 'opener';
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}