function openDiv (id) {
	document.getElementById(id).style.display = 'block';
	location.href= "#bottom";
	return false;
}

function openDivD (id) {
	document.getElementById(id).style.display = 'block';
	return false;
}

function closeDiv (id) {
	document.getElementById(id).style.display = 'none';
	return false;
}

function closeAllBut (id) {
	closeDiv ('faq');
	closeDiv ('about');
	closeDiv ('b2b');
	closeDiv ('disclaimer');
	return openDiv (id);
}

activeDIV = null;

function toggleDIV (id,maandopen) {
	var openDiv = document.getElementById(maandopen);
	openDiv.style.display = "none";
	var aDiv = document.getElementById(id);
	if (activeDIV && activeDIV != aDiv)
		activeDIV.style.display = "none";
	aDiv.style.display = (aDiv.style.display == "block") ? "none" : "block";
	activeDIV = aDiv;
}

function hoverDIV (ele, state) {
	ele.style.backgroundColor = state ? "#B7C7C7" : "#BDCCCC";
}

function hoverNaV (ele, state) {
	ele.style.backgroundColor = state ? "#EDF0F0" : "";
}