function resizeHome(){


 try {

 el = document.getElementById("main");

 
 newHeight = document.body.clientHeight-280;
 
 el.style.height = newHeight+'px';

 }
 catch (e){
 //alert("het schalen is mislukt");
 }

}

window.onresize = resizeHome; 
