function loadheight(){
       var frameWin = document.getElementById("frameWin");
       var frameBox = document.getElementById("frameBox");
       var newHeight;
       newHeight = frameWin.contentWindow.document.body.scrollHeight + 500 + "px";
       frameWin.style.height = newHeight;
       frameBox.style.height = newHeight;
}
