
var newWindow;
function openWindow(url) {
  if (newWindow) newWindow.close();
  newWindow=window.open(url,"location","alwaysRaised=yes,resizable=yes,menubar=yes,location=yes,toolbar=yes,scrollbars=yes,width=400,height=200,top=5,left=5")
  newWindow.focus();
  }