// JavaScript Document
window.onload = resize;
function resize(){  
var frame = document.getElementById("dynamic");  
var htmlheight = document.body.parentNode.scrollHeight;  
var windowheight = window.innerHeight;  
if ( htmlheight < windowheight ) { document.body.style.height = windowheight + "px"; frame.style.height = windowheight-348 + "px"; }  
else { document.body.style.height = htmlheight + "px"; frame.style.height = htmlheight-348 + "px"; }  
}

