﻿function SetIframeHeight()
{
    var Iframe=document.getElementById("Iframe");
    if (document.getElementById)
    {

        if (Iframe && !window.opera)
        {
            if (Iframe.contentDocument && Iframe.contentDocument.body.offsetHeight)
                {
                    Iframe.height = Iframe.contentDocument.body.offsetHeight;
                }
            else if(Iframe.Document && Iframe.Document.body.scrollHeight)
                {
                    Iframe.height = Iframe.Document.body.scrollHeight;
                }
        }
     }
 }

 function SetParentIframeSrc(url) {

     parent.document.getElementById('Content').innerHTML = "<iframe width='590px' src='" + url + "'  id='Iframe' name='Iframe' onload='Javascript:SetIframeHeight()' frameborder='no' border='0' marginwidth='0' marginheight='0'  scrolling='no'></iframe>";
 }
