
function goLang(destination) {
	var filename = location.pathname.substring(location.pathname.lastIndexOf('\/')+1); 
	if (destination=="english") {	
		switch(filename) {
			case "":
			location.href="index_uk.htm";
			break;
			case "index.htm":
			location.href="index_uk.htm";
			break;
			case "fremtiden.htm":
			location.href="future.htm";
			break;
			case "hvemervi.htm":
			location.href="whoarewe.htm";
			break;
			case "kontakt.htm":
			location.href="contact.htm";
			break;
			case "kpitrae.htm":
			location.href="kpitree.htm";
			break;
			case "kunder.htm":
			location.href="customers.htm";
			break;
			case "maal.htm":
			location.href="goals.htm";
			break;
		}
	}
	if (destination=="dansk") {	
		switch(filename) {
			case "":
			location.href="index.htm";
			break;
			case "index_uk.htm":
			location.href="index.htm";
			break;
			case "future.htm":
			location.href="fremtiden.htm";
			break;
			case "whoarewe.htm":
			location.href="hvemervi.htm";
			break;
			case "contact.htm":
			location.href="kontakt.htm";
			break;
			case "kpitree.htm":
			location.href="kpitrae.htm";
			break;
			case "customers.htm":
			location.href="kunder.htm";
			break;
			case "goals.htm":
			location.href="maal.htm";
			break;
		}
	}
	
}
// 
vis=false;
function showHide() {
	if (vis==false) {
	document.getElementById('ledelsen').style.display='inline';
	vis=true;
	}
	else {
		if (vis==true) {
		document.getElementById('ledelsen').style.display='none';
		vis=false;
		}
	}
}

