// JavaScript Document


<!--
// =========== Script for opening a new window with toolbar

function openWindow(url, name, rs, w, h) {
  var resize = "";
  if (rs) {
    resize = "resizable,";
  }
  popupWin = window.open(url, name, "toolbar=yes,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,top=10,left=10,width=755,height=500");
}

// -->


<!--
// =========== Script for opening a new window with no toolbar 

function openWindowNoTB(url, name, rs, w, h) {
  var resize = "";
  if (rs) {
    resize = "resizable,";
  }
  popupWin = window.open(url, name, "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,top=10,left=130,width=640,height=500");
}

// -->

