function createPopUps(){
for(var n = 0; n < document.anchors.length; ++n)
if (document.anchors[n].name == "popup")
{
  document.anchors[n].onclick=function() {
        var img = new Image;
        var title = this.text + ' (klik voor sluiten)';
        img.onload = function() {
            var win = window.open('', '', 'width='+this.width+',height='+this.height);
            win.document.open('text/html', 'replace');            
	    win.document.writeln('<html><title>'+title+'</title><body style="margin:0;padding:0" onBlur="self.close()" onclick="self.close()">'+
                '<img src="'+this.src+'" alt="'+title+'" text="klik voor sluiten"></body></html>' );
            win.document.close();
        }
        img.src = this.href;
        return false;
    }
}
};	

