var password="Katrien";
function controle(){
	var pasw=window.prompt("typ het paswoord in aub?","");
	if(pasw===password){
		window.parent.location="../Leden/index.html?pswd=oK";
	}else{
		alert("Sorry, dit is enkel toegankelijk voor leden!");
	}

};
function loguit(){
	window.parent.location="../index.html";
};