function loadDynamics()
{
var x,y;
var test1 = document.body.scrollHeight;
var test2 = document.body.offsetHeight
if (test1 > test2) // all but Explorer Mac
{
	//x = document.body.scrollWidth;
	y = document.body.scrollHeight;
}
else // Explorer Mac; would also work in Explorer 6 Strict, Mozilla and Safari
{
	//x = document.body.offsetWidth;
	y = document.body.offsetHeight;
}


// Explorer blijft een scrollbalk tonen (!!! HEB IK NU LATEN STAAN WANT ANDERS VERSPRINGT DE SITE CONSTANT !!!)
// Daarom een "self.screen.pixelDepth" aanroepen die niet wordt herkend door Explorer maar wel door
// alle andere browsers.
if(!self.screen.pixelDepth)
{


		var test_scroll_height = document.body.offsetHeight+8;
		if(document.body.scrollHeight > test_scroll_height)
		{
			//document.body.style.overflow = 'scroll';
		}
		else
		{
			//document.body.style.overflow = 'hidden';
		}


}

// Explorer blijft een scrollbalk tonen
// Daarom een documentwaarde aanroepen die niet wordt herkend door Explorer maar wel door
// alle andere browsers.
//if(!self.innerHeight)
//{
//	y = y-2;	// Explorer bug : toont anders ALTIJD de scrollbalk
//}


// GIVE HEIGHT TO THE DIV'S THAT NEED 100% (by there id name)
document.getElementById('container').style.height = y;
document.getElementById('column_left').style.height = y;
document.getElementById('column_center').style.height = y;
document.getElementById('column_right').style.height = y;
//document.getElementById('textblock_leftbottom').style.top = y-138;	// hoogte : layer begint onderaan. De tekstblok hoogte (-100) is een vaste waarde
document.getElementById('textblock_rightbottom').style.top = y-60;	// hoogte : layer begint onderaan. De tekstblok hoogte (-100) is een vaste waarde


}
