// JavaScript Document
function SetIframeHeight(iframeID)
{
	var ciframe=document.getElementById(iframeID);
	if (document.getElementById)
	{
		if (ciframe && !window.opera)
		{
			if (ciframe.contentDocument && ciframe.contentDocument.body.offsetHeight)
			ciframe.height = ciframe.contentDocument.body.offsetHeight;
			else if(ciframe.Document && ciframe.Document.body.scrollHeight)
			ciframe.height = ciframe.Document.body.scrollHeight;
		}
	}
}
