<!--
 
// NEW Autosizes iFrame According to Content
 
function setIframeHeight(iframe) {
	iframe.style.height = '0px'; 

	// IE6+, Moz 1.0+, Safari
	var iframeDoc = (iframe.contentDocument) ? iframe.contentDocument 
		: (iframe.contentWindow) ? iframe.contentWindow.document
		: null;

	// Find height of internal page
	var height = (iframeDoc.documentElement.scrollHeight ? iframeDoc.documentElement.scrollHeight 
			: iframeDoc.body.scrollHeight ? iframeDoc.body.scrollHeight 
			: iframeDoc.body.offsetHeight); 

	// Change height of iFrame
	iframe.style.height = height + 'px'; 
}

// Autosizes iframes according to content

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