// JS Util :: Smart iFrames v.1.1
// Resize iFrames Dinamically on Height

function resizeFrame(f) {
	f.style.height = "1px";
    f.style.height = f.contentWindow.document.body.scrollHeight + "px";
} //end function

// END
