var popupViewImg = '';
function viewImg(afb) {
	if(afb == ''){
		alert('geen afbeelding beschikbaar');
	}else{
		if (!popupViewImg.closed && popupViewImg.location){
			popupViewImg.close();
		}
		popupViewImg = window.open('','popupImg','width=400,height=300,directories=no,location=no,menubar=no,resizable=yes,scrollbars=no,status=yes,toolbar=no');
		popupViewImg.document.write('<html><head><title>Zorggroep Apeldoorn<\/title><\/head>');
		popupViewImg.document.write('<body style="margin:0;overflow:hidden;padding:0;" onload="setTimeout(\'window.resizeTo(document.afbeelding.width+10,document.afbeelding.height+62)\',100)"><a onclick="self.close()" style="cursor: pointer;"><img src="' + afb + '" alt="" border="0" name="afbeelding"></a><\/body><\/html>');
		popupViewImg.document.close();
	}
}
