function autofitIframe(id){
	var browser=navigator.appName;
	if (browser.indexOf("Microsoft")>=0)
		parent.document.getElementById(id).style.height=this.document.body.scrollHeight+"px"
	else
		parent.document.getElementById(id).style.height=this.document.body.offsetHeight+"px";
}