function bericht(msg, id) { 
	if (confirm(msg))
		window.location = 'verwijder_categorie.php?id=' + id;
	else
		return false;
}

function bericht2(msg, id) { 
	if (confirm(msg))
		window.location = 'verwijder_link.php?id=' + id;
	else
		return false;
}

function bericht3(msg) { 
	if (confirm(msg))
		return true;
	else
		return false;
}

function navi(jump) {
	eval("parent" + ".location = '" + jump.options[jump.selectedIndex].value + "'");
}

function check() {
	var a = document.form.ctfid.value;

	if(a == '')
		window.alert('Er is geen pagina naam opgegeven.');
	else
		window.open('check.php?id=' + a + '', '_button1', 'HEIGHT=150, resizable=no, WIDTH=350');
}

function terug(xx) {
	opener.window.location = 'aanmelden.php?id=' + xx;
}