function iframeSize(o) {
	var apply = function(a) { document.getElementById(o).style.height = a + "px"; }
	var NIE = function() { apply(document.getElementById(o).contentWindow.document.body.parentNode.offsetHeight + 5); }
	var FIE = function() { apply(document.getElementById(o).contentWindow.document.body.scrollHeight + 5); }
	navigator.appName.indexOf("Internet Explorer") > -1 ? setTimeout(FIE, 100) : NIE();
}
