function newWindow(link) {
  var nWindow;
  nWindow = window.open(link, "new1", "width=700, height=600, scrollbars, resizable");
  if (nWindow.open) {
    nWindow.close;
  }
  nWindow.focus();
}

