function resize(){


 try {

 el = document.getElementById("iframe");
 
 newHeight = document.body.clientHeight-164;
 el.style.height = newHeight+'px';


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

}

window.onresize = resize; 