function show_kaart(){
	
	$('map').style.display = "";
	$('adressen').style.display = "none";
	$('toevoegen').style.display = "none"
	$('tabkaart').className = "tabSel";
	$('tabadressen').className = "tab";
	$('tabtoevoegen').className = "tab";
	showLocation('postcode');
		$('text').style.display = "";

	$('tab2').className = "tab";
	$('tab3').className = "tab";
	$('beste').style.display = "none";
	$('slechtste').style.display = "none";
	google_load();
}

function show_adressen(){
	
	$('map').style.display = "none";
	$('adressen').style.display = "";
	$('toevoegen').style.display = "none"
		$('tabkaart').className = "tab";
	$('tabadressen').className = "tabSel";
	$('tabtoevoegen').className = "tab";
	$('text').style.display = "";	
	
		$('tab2').className = "tab";
	$('tab3').className = "tab";
	$('beste').style.display = "none";
	$('slechtste').style.display = "none";
}

function show_toevoegen(){
	
	$('map').style.display = "none";
	$('adressen').style.display = "none";
	$('toevoegen').style.display = ""
	$('tabkaart').className = "tab";
	
	$('tab2').className = "tab";
	$('tab3').className = "tab";
	$('beste').style.display = "none";
	$('slechtste').style.display = "none";
	
	
	$('tabadressen').className = "tab";
	$('tabtoevoegen').className = "tabSel";      
	$('text').style.display = "none";
	google_load_toevoegen();
	return false;
} 
