// iframeの高さ自動調整スクリプト
function AdjustFrame(frid) {
	// IDから対象のiframeエレメントを取得
	var IFR = document.getElementById(frid);
	var h = 0;
	
	// ブラウザにより分岐
	if (window.opera)
	{
		// Opera
		h = IFR.contentWindow.document.body.scrollHeight + 20;
	}
	else if (window.ActiveXObject)
	{
		// Internet Explorer
		h = IFR.contentWindow.document.body.scrollHeight;
	}
	else
	{
		// Netscape, Mozilla, Firefox etc.
		h = IFR.contentWindow.document.documentElement.scrollHeight + 1;
	}
	IFR.height = h;
}


