function swapMe(img,hover) {
	document.getElementById(img).src = 'images/' +hover; 
}

function doSearch() {
	if (document.frmZoek.trefwoord.value == "") {
		alert("U dient een trefwoord in te voeren");
		document.frmZoek.trefwoord.focus();
	} else {
		document.frmZoek.submit();
	}
}

function open_window(url) {
mywin = window.open(url,"win",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=600,height=450');
}
