﻿function adjustIFrameHeight(iframe)
{
if(iframe)
{
var doc=iframe.contentWindow.document;
var height=(doc.compatMode=='CSS1Compat'?doc.documentElement.scrollHeight:doc.body.clientHeight);
if(doc)
{
iframe.style.height=height+'px';//+15
}
}
}
function adjustIFrameHeight1(iframe)
{
if(iframe)
{
var doc=iframe.contentWindow.document;
var height=(doc.compatMode=='CSS1Compat'?doc.documentElement.scrollHeight:doc.body.clientHeight)+39;
if(doc)
{
iframe.style.height=height+'px';//(doc.compatMode=='CSS1Compat'?doc.documentElement.scrollHeight:doc.body.clientHeight)+'px';
}
}
}