
function win_resize()
{
	if(top == null)
	{
		return;
	}
	
	if(top.location!=this.location)
	{
		var myHeight = document.body.scrollHeight + 50;
		var minHeight = parent.document.body.clientHeight - 200;

		if(myHeight < minHeight)
			myHeight = minHeight;

		window.resizeTo(document.body.clientWidth,myHeight); 
	}
}

win_resize();



