function makePopup ()
{
	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>Bekijk afbeelding :: '+title+'</title></head><body style="margin:0;padding:0"><img src="'+this.src+'" alt="" title="Klik om venster te sluiten" onclick="window.close();"><\/body><\/html>');
	            win.document.close();
	        }
	        img.src = this.href;
	        return false;
	    }
	}
}
