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.outerWidth>=980) || (document.all && document.body.clientWidth>=980)) {
	if (window.location.href.indexOf("index") != -1) index = '<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 index = "";
        document.getElementsByTagName("address")[0].innerHTML += index + '<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";
		}
	}

