// JavaScript Document
function janee(bericht, url)
{
	if(confirm(bericht)) location.href = url;
}
function popup(){
	window.open("hou_mij_op_de_hoogte.php" ,'Tulp', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=500,height=350');
}
function show( targetId ){
if (document.getElementById){
target = document.getElementById( targetId );
if (target.style.display == "none"){
target.style.display = "";
}
}
}
function hide( targetId ){
if (document.getElementById){
target = document.getElementById( targetId );
if (target.style.display == ""){
target.style.display = "none";
}
}
}