var winhandle = null;

function popUp(URL) {
  if ((winhandle != null) && (! winhandle.closed)){
    winhandle.location.replace(URL);
  }
  else
  {
    winhandle=window.open(URL, 'imagewin', 'width=240,height=300');
  }

  winhandle.focus();
}