<!-- Afschermen voor oude browsers

function showhide(id)
{


	if (document.getElementById(id).style.display == "none") {
		document.getElementById(id).style.display = 'block';
	} else {
		document.getElementById(id).style.display = 'none';
	}

}

function Changelocation(file)
{

window.location.href = file;

}

// Einde afscherming -->