function confirm_del(url_location) {
	if(confirm('Zeker weten?')) {
		document.location.href = url_location;
	}
}

function hide_popup(elem_id) {		
	var elem = document.getElementById(elem_id);	
	elem.style.display = "none";
}

function hide_popup_parent(elem_id) {			
	var elem = parent.document.getElementById(elem_id);	
	elem.style.display = "none";	
}

function unhide_popup_parent(elem_id) {			
	var elem = parent.document.getElementById(elem_id);
	
	elem.style.display = "block";
}

function unhide_popup(elem_id) {		
	var elem = document.getElementById(elem_id);	
	elem.style.display = "block";
}

function load_profile_popup(url_location) {	
	frames['profile_popup_frame'].location.href = url_location;
	unhide_popup('popupLayer');
}

function load_branche_popup(url_location) {	
	frames['branche_popup_frame'].location.href = url_location;
	unhide_popup('popupLayer');
}

function load_text_pages_popup(url_location) {	
	frames['text_pages_popup_frame'].location.href = url_location;
	unhide_popup('popupLayer');
}

