function popup(url) {
  var select = window.open(url, "_blank", "dependent=yes,hotkeys=no,height=0,width=0,location=no,menubar=no,scrollbars=yes");
  select.resizeTo(400,280);
  select.moveTo(screen.width - 400, 0);
  select.focus();
}

function print(url) {
  var print = window.open(url);
  print.resizeTo(700,600);
  print.focus();
}

