// JavaScript Document
function iframeResize(){
var PageHight = document.body.scrollHeight + 80;
window.parent.document.getElementById('disp').style.height = PageHight + 'px';
}
window.onload = iframeResize;
