matchHeight=function()
	{
		var theElementInhoud=document.getElementById('houderdiv');
		var theElementDim=document.getElementById('dim');
		if (theElementInhoud.offsetHeight)
			{
//				alert("offsetheight is " + theElementInhoud.offsetHeight);
				dimwidth=theElementInhoud.offsetWidth;
				dimheight=theElementInhoud.offsetHeight;
			}
		else if (theElementInhoud.style.pixelHeight)
			{
//				alert("pixelheight is " + theElementInhoud.style.pixelHeight);
				dimwidth=theElementInhoud.style.pixelWidth;
				dimheight=theElementInhoud.style.pixelHeight;
			}
		theElementDim.style.width=dimwidth;
		theElementDim.style.height=dimheight;
	}
window.onload=function()
	{
/////////////////////////////////////////////////////////////////////////////////////////////////
	verstopze(); // deze roept een functie aan in slidebox.js
				 // dat is eigenlijk namelijk ook een window.onload maar die doet het niet
				 // omdat deze later wordt aangeroepen
/////////////////////////////////////////////////////////////////////////////////////////////////
	if (document.getElementById('houderdiv'))
			{
				matchHeight();
			}
		else
			{
				alert("noooOOOooooohhoooWwwWWW");
			}
	}

