//div instellen

document.write('<Div id="hfdp" style="position:absolute; top:95; left:0; width:'+(myWidth)+'; height:'+(myHeight-100)+' z-index:0; overflow:auto;">');
document.getElementById("hfdp").style.width=myWidth;
document.getElementById("hfdp").style.height=myHeight-95;

// breedte van hoofdtabel zetten op schrembreedte
document.write('<TABLE border="0" height="'+(myHeight-95)+'" width="'+(myWidth-21)+'" cellspacing="0" cellpadding="0">');

function paginaresize()
{

  var myWidth = 0, myHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.innerWidth;
    myHeight = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myWidth = document.documentElement.clientWidth;
    myHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myWidth = document.body.clientWidth;
    myHeight = document.body.clientHeight;
  }

	myWidth2=myWidth; if (myWidth2 < 1000) {myWidth2 = 1000};

document.getElementById("hfdp").style.height=(myHeight-95);document.getElementById("hfdp").style.width=myWidth;
timerid = setTimeout("herlaadpagina()",500);
}

function herlaadpagina()
{
window.location.reload(); 
}