﻿function SetCwinHeight()
{
    var iFrameID=document.getElementById("eBrainWebSpace"); //iframe id
    if (document.getElementById)
    {
        if (iFrameID && !window.opera)
        {
            if (iFrameID.contentDocument && iFrameID.contentDocument.body.offsetHeight)
            {
                iFrameID.height = iFrameID.contentDocument.body.offsetHeight+20;
            }else if(iFrameID.Document && iFrameID.Document.body.scrollHeight)
            {
                iFrameID.height = iFrameID.Document.body.scrollHeight+20;
            }
        }
   }
}

