function popUpStart (url, width, height) {
  var pop = window.open(url, "popUpStart", "width=" + width + ",height=" + height + ",status=no,scrollbars=no,resizable=no,status=no,left=" + (screen.width/2-400) + ",top=" + (screen.height/2-250));
  pop.opener = self;
  pop.focus();
  }

function popUp (url, width, height) {
  var pop = window.open(url, "popUp", "width=" + width + ",height=" + height + ",status=no,scrollbars=yes,resizable=no,status=no,left=" + (screen.width/2-400) + ",top=" + (screen.height/2-250));
  pop.opener = self;
  pop.focus();
  }

function closeIt () {
  opener.focus();
  window.close();
}