<!-- Afschermen voor oude browsers


function ftnloading () {


	///loading wieltje (tijdelijk) weg

	//document.getElementById('div_popunder').style.display = "none";
	//document.getElementById('div_alles').style.display = "block";

	checkmenu();

        if (parseInt(navigator.appVersion)>3) {
          if (navigator.appName=="Netscape") {
            winW = window.innerWidth;
            winH = window.innerHeight;
         }
        if (navigator.appName.indexOf("Microsoft")!=-1) {
            //winW = document.body.offsetWidth;
            winH = document.body.offsetHeight;
        }
       }

	navigatieH = (document.getElementById('nav_total').scrollHeight+200);
	maincelH = document.getElementById('main_cell').scrollHeight;

	if(navigatieH > maincelH) {
		document.getElementById('main_cell').style.height = (navigatieH + 40) + 'px';

	}

	if (!detectFF()) {

	////IE fouten verbeteren
		winW = document.getElementById('header_top').offsetWidth;
        }	
	 

	if (winW > 1024) {

		document.getElementById('div_footer').style.width = (winW - (winW * 0.04)) + 'px';
		document.getElementById('div_center').style.width = (winW - (winW * 0.04)) + 'px';

	}

}



// Einde afscherming -->