var popupViewImg = '';
function viewImg(afb,tekst) {
	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>' + tekst + '<\/title><\/head>');
		popupViewImg.document.write('<body style="font:11px/15px Verdana, Geneva, Arial;margin:0;overflow:hidden;padding:0;text-align:center" onload="setTimeout(\'window.resizeTo(document.afbeelding.width,document.afbeelding.height+80)\',100)"><img src="' + afb + '" alt="" border="0" align="center" name="afbeelding"><br>' + tekst + '<\/body><\/html>');
		popupViewImg.document.close();
	}
}