function pasaan() {

  var Hoogte = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    Hoogte = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    Hoogte = document.documentElement.clientHeight - 10;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    Hoogte = document.body.clientHeight - 10;
  }
var doel1 = document.getElementById('rechter_kolom_start');
var doel2 = document.getElementById('inhoud_start');
doel1.style.height = ( Hoogte - 280 ) + "px";
doel2.style.height = ( Hoogte - 250 ) + "px";
}
