function chkKeyword() {
	if (document.frmZoek.trefwoord.value=="") {
		alert('U dient een trefwoord in te voeren');
		document.frmZoek.trefwoord.focus();
	} else {
		document.frmZoek.submit();
	}
}

var venster;
function closePop(){
	venster.close();
}

function doPrint(p){
	venster = window.open("../print.php?id=" + p, "printvenster", "width=300,height=300,toolbars=no,scrollbars=auto,scolling=no,top=5000,left=5000")
	var  t1 = setTimeout('venster.print();',3000);
	var timer1 = setTimeout('closePop();',3000);
}