
function autoIframe(id) {
frame = document.getElementById(id);
innerDoc = (frame.contentDocument) ? frame.contentDocument : frame.contentWindow.document;
if(frame.style.height) { frame.style.height = innerDoc.body.scrollHeight + 150; }
else { frame.height = innerDoc.body.scrollHeight + 150; }

}