	<!--
	var lastHeight;
	function init() 
	{
		ShowHeight();
		lastHeight= Info.document.body.scrollHeight;
		setInterval(
		function()
		{
			if(Info.document.body.scrollHeight!=lastHeight) 
			{
				ShowHeight();
				lastHeight= Info.document.body.scrollHeight;
			}
		},1);
	}
	function ShowHeight(){
	document.all('Info').height=Info.document.body.scrollHeight + 20;
    }
	//-->
<!--	
function SetWinHeight(obj)
{
	var win=obj;
	if (document.getElementById)
	{
		if (win && !window.opera)
		{
			if (win.contentDocument && win.contentDocument.body.offsetHeight) 
			{
				win.height = win.contentDocument.body.offsetHeight; 
			}
			else if(win.Document && win.Document.body.scrollHeight)
			{
				win.height = win.Document.body.scrollHeight;
			}
		}
	}
}
//-->