window.attachEvent("onload",function()		
{
	if(top!=self)
	{
		var h = document.body.scrollHeight;
		var a = top.document.getElementById("contentFrame");
		if(a!=null)
		{
		    
			if(h<1040) a.height=1040;
			else if(a.height<h)
				a.height=h;
		}
	}
});

