/**
		调整iframe的大小
		*/
	function adjustIframe(iframeID)
	{
		var obj=document.getElementById(iframeID);
		if(nav.type==1)
		{
			//IE浏览器
			obj.style.height=parseInt(window.frames[0].document.body.scrollHeight);
		}
		else
		{
			obj.style.height=parseInt(window.frames[0].document.body.offsetHeight);
		}
	}
