<!--
//functie om een nieuwe pagina te openen
function changeInhoud(doel)
{
	document.getElementById("inhoud").src = "inhoud/" + doel;
}

//functie om een foto in een nieuwe window te openen
function showPic(theSrc, theText)
{
	newWindow = window.open('', 'foto', 'width=680, height=580, status=yes, toolbar=no, menubar=no');
	newWindow.document.open();
	newWindow.document.write('<html><head><title>Foto</title></head><bod>');
	newWindow.document.write('<img src="fotos/' + theSrc + '" width=640></img>');
	newWindow.document.write('<br><span>' + theText + '</span>');
	newWindow.document.write('</body></html>');
	
	newWindow.document.close();
}

//functie om de hlp in of uit te schakelen
function showHideHelp()
{
	if(document.getElementById('help').style.visibility == 'hidden')
		document.getElementById('help').style.visibility = 'visible';
	else
		document.getElementById('help').style.visibility = 'hidden';
}
-->
