
if (document.getElementById && document.createElement)
	createIndex();

function createIndex(){
	document.write('<iframe id="index" src="index_1.html"><\/iframe>');
	document.getElementById("index").style.display = "none";
	if (window.location.href.indexOf("_welkom_") != -1) _welkom_ = '<span style="font-family: monospace;">-&gt;</span><a style="border-left: none;" href="index_1.html" title="alle deelpagina\'s opgelijst &mdash; met een korte beschrijving"">index<\/a>';
	else var _welkom_ = "";
        document.getElementsByTagName("address")[0].innerHTML += _welkom_ + '<a href="javascript:showHideIndex();" title="lijst met alle artikels &mdash; klikken om te openen of sluiten"><strong>Snelzoeken<\/strong><\/a>';	
	}

function showHideIndex(){
	if (document.getElementById("index").style.display == "none"){
		document.getElementById("index").style.display = "block";
		}
	else{
		document.getElementById("index").style.display = "none";
		}
	}


