function over_link(linkje){
	linkje.style.fontWeight = "bold";
	linkje.style.color="#4682B4";
}
function terug_link(linkje){
	linkje.style.fontWeight = "bold";
	linkje.style.color="#000000";
}
function over_link_1(linkje){
	linkje.style.textDecoration = "underline";
}
function terug_link_1(linkje){
	linkje.style.textDecoration = "none";
}

function foutmelding_popup(){
	
	document.getElementById("popup").style.visibility = 'visible';
}

function foutmelding_sluiten(){
	
	document.getElementById("popup").style.visibility = 'hidden';
}

function emptyfield(id){
	id.value = "";
	id.focus();
}

function emptypass(id){
	if(id == 1){
		document.getElementById("passdum").style.display = 'none';
		document.getElementById("passreal").style.display = 'inline';
		document.inlogbalk.balk_password.focus();
	}
	if(id == 2){
		document.getElementById("frontpassdum").style.display = 'none';
		document.getElementById("frontpass").style.display = 'inline';
		document.front_invulvelden.password_front.focus();
	}
}
function ophalen_gegevens(){
	id = document.formulier.user_id.value;
	window.location.href = "/lgwhdhds/edit_" + id;
	
}

function info_popup(title){
	$.ajax({
		type: "GET" ,
  		url: "/ajax/siteinfo_popup.php" ,
		data: "title="+title ,
  		success: function(msg){
     			document.getElementById("pop_info").innerHTML =  msg;
			document.getElementById("pop_info").style.display = 'block';
			$('#popup_info').bgiframe();
   		}
	});
}

function info_sluiten(){
	
	document.getElementById("pop_info").style.display = 'none';
}
  
