function getAnchors()
{
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++)
	{	
		var anchor = anchors[i]; 
		if (anchor.getAttribute("id") == "popup")
		{
			anchor.onclick = function(){openImage(this.href,'Autobedrijf Van de Water'); return false;};
		}
	}
}

function openImage(img,txt)
{
	image = new Image();
	image.src = (img);
	imgWidth = image.width;
	imgHeight = image.height;

	if ((imgWidth!=0)&&(imgHeight!=0))
	{
		if (!txt) {txt=img}
		vars = "width="+imgWidth+",height="+imgHeight+",left="+((screen.width-imgWidth)/2)+",top="+((screen.height-imgHeight)/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("<style type=\"text/css\">body{cursor:pointer;cursor:hand;}</style>");
		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("</body>\n</html>\n"); 
		
		if (newwindow.document.focus) {newwindow.document.focus();}
		newwindow.document.close(); 
	}
}
