var winhandle = null;

function fktFoto(URL) {
  if ((winhandle != null) && (! winhandle.closed)) {
    winhandle.location.replace(URL);
  }
  else {
    winhandle=window.open(URL, 'imagewin', "width=1024, height=840, resizable");
    winhandle.document.bgColor="#CCFFCC";
    winhandle.document.close();
  }
  winhandle.focus();
}
