// JavaScript Document


function autofitIframe(id2){
if (!window.opera && !document.mimeType && document.all && document.getElementById){
		parent.parent.document.getElementById(id2).style.height=this.document.body.offsetHeight+"px";
	}
	else if(document.getElementById) {
		parent.parent.document.getElementById(id2).style.height=this.document.body.scrollHeight+"px";
	}
}
