function navover(id) {
if(document.getElementById) {
	document.getElementById("nav_"+id).src = "img/nav/"+id+"_f.gif";
}
}

function navout(id) {
if(id!=nav) {
	if(document.getElementById) {
		document.getElementById("nav_"+id).src = "img/nav/"+id+".gif";
	}
}
}

var popupje;
function popup(url, wijdte, hoogte) {
if(popupje) {
	popupje.close();
}
naam="popup"; links=0; boven=0; scrollen="auto";
url = url + "";
instellingen = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars='+scrollen+',resizable=yes,width='+wijdte+',height='+hoogte+',left='+links+',top='+boven;
popupje=window.open(url, naam, instellingen);
}
