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