<!-- 
// Pop-up met titel en juiste afmetingen van de foto
function Foto(img,txt,txt1){
 foto1= new Image();
 foto1.src=(img);
 CheckFoto(img,txt,txt1);
}
function CheckFoto(img,txt,txt1){
 if((foto1.width!=0)&&(foto1.height!=0)){
 viewFoto(img,txt,txt1);
}
else{
 uitvoering="CheckFoto('"+img+"','"+txt+"','"+txt1+"')";
 interval=setTimeout(uitvoering,20);
}
}
function viewFoto(img,txt,txt1){
 imgbreedte=foto1.width;
 imghoogte=foto1.height+80;
 if (!txt1) {txt1=txt}
 vars="width="+imgbreedte+",height="+imghoogte+",left="+((screen.width-imgbreedte)/2)+",top="+((screen.height-imghoogte)/2);
 newwindow=window.open("","nieuwvenster",vars);
 newwindow.document.clear();
 newwindow.document.write("<html>\n<head>\n<title>"+txt+"</title>\n");
 newwindow.document.write("<meta http-equiv=\"imagetoolbar\" content=\"no\">\n");
 newwindow.document.write("<link href=\"style/wendyscholten.css\" rel=\"stylesheet\" type=\"text/css\" media=\"screen\">\n");
 newwindow.document.write("</head>\n\n<body style=\"margin:0px; padding:0px;\" onBlur=\"window.close()\">\n"); 
 newwindow.document.write("<img src=\""+img+"\" border=\"0\" onclick=\"javascript:window.close()\">\n"); 
 newwindow.document.write("<p>"+txt1+"\n</p><p><i>Overname van de foto zonder bronvermelding is niet toegestaan.</p>\n"); 
newwindow.document.write("</body>\n</html>\n"); 
 if (newwindow.document.focus) {newwindow.document.focus();}
 newwindow.document.close(); 
}
// einde script 
-->
