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