var anchors=document.getElementsByName("popup");for(var n=0;n<anchors.length;++n){title=anchors[n].title;anchors[n].onclick=function(){var a=new Image;a.onload=function(){var b=(screen.width-this.width)/2;var d=(screen.height-this.height)/2;var c=window.open("","","width="+this.width+",height="+this.height+",top="+d+",left="+b);c.document.open("text/html","replace");c.document.writeln("<html><head><title>"+title+'</title></head><body style="margin:0;padding:0">');c.document.writeln('<div><img src="'+this.src+'" alt="'+title+'" title="Klik om venster te sluiten" onclick="window.close();"></div></body></html>');c.document.close()};a.src=this.href;return false}};
