function divresize()
{
	var winheight=0;

	  if( typeof( window.innerWidth ) == 'number' ) {
	    //Non-IE
	    winwidth = window.innerWidth;
	    winheight = window.innerHeight;
	  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
	    //IE 6+ in 'standards compliant mode'
	    winwidth = document.documentElement.clientWidth;
	    winheight = document.documentElement.clientHeight;
	  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
	    //IE 4 compatible
	    winwidth = document.body.clientWidth;
	    winheight = document.body.clientHeight;
	  }
    
	if (document.getElementById("tekst"))
		document.getElementById("tekst").style.height=winheight-124-52+'px';
	
	if (document.getElementById("indexbox"))
		document.getElementById("indexbox").style.height=winheight-85-55+'px';

	if (document.getElementById("menucolumn"))	
		document.getElementById("menucolumn").style.height=winheight-85-41-23+'px';

	if (document.getElementById("menucolumn"))
	{
		document.getElementById("menucolumn").style.height=winheight-85-55+'px';
	
		if (document.getElementById("menuboxfixed"))
		{
			var oParent = document.getElementById("menucolumn").childNodes[document.getElementById("menucolumn").childNodes.length-1]; 
			document.getElementById("menuboxfixed").style.height=winheight-128-18-oParent.offsetTop+'px';
		}
	}
	
	if (winwidth<1014)
		document.getElementById('html').style.overflow = 'auto';
	else
		document.getElementById('html').style.overflow = 'hidden';

	if (document.getElementById("adsense"))
		if (winwidth>1024)
			document.getElementById('adsense').style.display="block";
		else
			document.getElementById('adsense').style.display="none";
}

function divresizewa()
{
	var winheight=0;

	  if( typeof( window.innerWidth ) == 'number' ) {
	    //Non-IE
	    winwidth = window.innerWidth;
	    winheight = window.innerHeight;
	  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
	    //IE 6+ in 'standards compliant mode'
	    winwidth = document.documentElement.clientWidth;
	    winheight = document.documentElement.clientHeight;
	  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
	    //IE 4 compatible
	    winwidth = document.body.clientWidth;
	    winheight = document.body.clientHeight;
	  }
    
	if (document.getElementById("leftbox"))
		document.getElementById("leftbox").style.height=winheight-128-20+'px';
	
	if (document.getElementById("tekstbox"))
	{
		document.getElementById("tekstbox").style.height=winheight-128-20+'px';
		document.getElementById("tekstbox").style.width=winwidth-145-136-30-16+'px';
	}

	if (document.getElementById("rightbox"))
		document.getElementById("rightbox").style.height=winheight-128-20+'px';
		
	if (document.getElementById("iframe_vliegtickets"))	
	{
		document.getElementById("iframe_vliegtickets").style.height=winheight-128-20+'px';
		document.getElementById("iframe_vliegtickets").style.width=document.getElementById("tekstbox").style.width;
		document.getElementById("tekstbox").style.overflow='hidden';
	}
}