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=400,directories=0,location=0,menubar=0,resizable=1,scrollbars=0,status=1,toolbar=0');
		popupViewImg.document.write('<html><head><title>Rijnvallei<\/title><\/head>');
		popupViewImg.document.write('<body style="margin:0;overflow:hidden;padding:0" onload="setTimeout(\'window.resizeTo(document.afbeelding.width,document.afbeelding.height+50)\',100)"><img src="' + afb + '" alt="" border="0" align="center" name="afbeelding"><\/body><\/html>');
		popupViewImg.document.close();
	}
}
function controle(frm){
	elm = frm.q;
	if(elm.value==elm.defaultValue){
		elm.value="";
	}
}