// JavaScript Document
function setFooter() {
	
	textHeight = document.getElementById("text").offsetHeight;
	navHeight = document.getElementById("nav").offsetHeight;
	
	//alert ("nav" + navHeight);
	//alert ("text" + textHeight);
	
	if (textHeight > navHeight) {
		//alert("textHeight groter");
		document.getElementById("nav").style.height = textHeight + 163 +'px';
		document.getElementById("content").style.height = textHeight + 40 + 'px';
		document.getElementById("footer").style.top = textHeight + 316 + 'px';
	} else {
		//alert("navHeight groter");
		document.getElementById("nav").style.height = navHeight + 170 + 'px';
		document.getElementById("content").style.height = navHeight + 47 + 'px';
		document.getElementById("footer").style.top = navHeight + 322 + 'px';
	}
}

function goTo()
{
	index = document.drop.keuze.selectedIndex;
	url = document.drop.keuze.options[index].value;

	if (url == "1")
				document.location.href = "particulier_leven.asp?nav=verzekeringen";
	if (url == "2")
				document.location.href = "particulier_pensioen.asp?nav=verzekeringen";
	if (url == "3")
				document.location.href = "particulier_schade.asp?nav=schade";
	if (url == "4")
				document.location.href = "particulier_hypotheek.asp?nav=hypoparticulier";
	if (url == "5")
				document.location.href = "gebouw.asp?nav=zakelijk";
	if (url == "6")
				document.location.href = "vervoer.asp?nav=zakelijk";
	if (url == "7")
				document.location.href = "recht.asp?nav=zakelijk";
	if (url == "8")
				document.location.href = "employee.asp?nav=zakelijk";
	if (url == "9")
				document.location.href = "zorg.asp?nav=zakelijk";
	if (url == "10")
				document.location.href = "pensioen.asp?nav=zakelijk";
	if (url == "11")
				document.location.href = "levensloop.asp?nav=zakelijk";
	if (url == "12")
				document.location.href = "zakelijk_hypotheek.asp?nav=hypozakelijk";
	return true;
}
function goTo2()
{
	index = document.drop.keuze2.selectedIndex;
	url = document.drop.keuze2.options[index].value;

	if (url == "5")
				document.location.href = "gebouw.asp?nav=zakelijk";
	if (url == "6")
				document.location.href = "vervoer.asp?nav=zakelijk";
	if (url == "7")
				document.location.href = "recht.asp?nav=zakelijk";
	if (url == "8")
				document.location.href = "employee.asp?nav=zakelijk";
	if (url == "9")
				document.location.href = "zorg.asp?nav=zakelijk";
	if (url == "10")
				document.location.href = "pensioen.asp?nav=zakelijk";
	if (url == "11")
				document.location.href = "levensloop.asp?nav=zakelijk";
	if (url == "12")
				document.location.href = "zakelijk_hypotheek.asp?nav=hypozakelijk";
	return true;
}
