// JavaScript Document
<!-- Begin image popup

function PrevFoto(img){
  foto1= new Image();
  foto1.src=(img);
  Controle(img);
}

function Controle(img){
  if((foto1.width!=0)&&(foto1.height!=0)){
    viewFoto(img);
  }
  else{
    functie="Controle('"+img+"')";
    interval=setTimeout(functie,20);
  }
}
function viewFoto(img){
  breed=foto1.width+0;
  hoog=foto1.height+0;
  string="width="+breed+", height="+hoog+", screenX=" + ((screen.width - breed) / 2) +", screenY=" + ((screen.height - hoog) / 2) +", top=" + ((screen.height - hoog) / 2) +", left=" + ((screen.width - breed) / 2) +"";
  venster=window.open(img,"",string);
  venster.document.write('<HTML><BODY topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" marginwidth="0" marginheight="0">');
  venster.document.write('<script language="javascript" src="../js/copyright.js"></script><a href="javascript:window.close()"><img src="' + img + '" alt="" border="0"</a href>');
  venster.document.write('</BODY></HTML>');
}
//  Einde image popup-->
