
	function setPasswordfield() {
		document.getElementById("password").innerHTML = "<input type=\"password\" id=\"wachtwoord\" name=\"wachtwoord\" value=\"\"><br>";
		document.getElementById("wachtwoord").focus();
	}
	
	function ShowHide(id) {
		if (document.getElementById(current)) {
			document.getElementById(current).style.display = "none";
		}
		
		if (document.getElementById(id)) {
			document.getElementById(id).style.display == "block" ? document.getElementById(id).style.display = "none" : document.getElementById(id).style.display = "block";
			current = id;
		}
	}
	
	function setHeaderimage(img) {
		if (img != "") {
			document.getElementById("secondrow").style.background = "url('../img/header_ingang/"+img+"') 391px 0px no-repeat";
		}
	}
	
	
	function showPopup(soort, id) {
		
		document.getElementById(soort + "_popup"+id).style.display = "block";
		
	}
	
	function hidePopup(soort, id) {
		
		document.getElementById(soort + "_popup"+id).style.display = "none";
		
	}
	
