function adjustIFrameSize(iframe)
{
if ( iframe.contentDocument ) // firefox
{
iframe.height = iframe.contentDocument.height + 30;
}
else // IE
{
//iframe.style.height = iframe.contentWindow.document.body.scrollHeight + 30;
iframe.height = iframe.contentWindow.document.body.scrollHeight + 30;
}

}



