function smallBrowserResize() {
	
	//De statusbalk tekst...
	window.defaultStatus='Regenboog';

	//Breedte en Hoogte van de Browser controleren...
	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;
  }
  
  //window.alert( 'Width = ' + myWidth );

  if (myWidth <= 990) {
  	divWidth = -(myWidth/2);
  	//window.alert(divWidth);
 		document.getElementById('main').style.marginLeft=divWidth+'px';
 		//document.getElementById('main').style.marginLeft='-'+390+'px';
  } else {
  	//window.alert('afblijven');
  		document.getElementById('main').style.marginLeft='-495px';
  }
    
   // divHeight = myHeight-136 //hoogte minus de header

  // Pas nu de hoogte van de betreffende div aan... dit werkt
  //document.getElementById('scroll').style.height=divHeight+'px';
  //document.getElementById('scroll').style.height=100;

}
