﻿function resizeIFrame()
    {
       var myHeight = document.body.scrollHeight;
       var myWidth = document.body.scrollWidth;
       var myFrame = window.parent.document.getElementById("app");
       myFrame.width = myWidth;
       myFrame.height = myHeight;
    }

