function AnyHeight()

	{

		var top=document.getElementById("top").offsetTop;

		var bottom=document.getElementById("bottom").offsetTop;

		var height=bottom-top;

		if(height<300)

			document.getElementById("content").style.height=300+'px';

	}
	
	// JavaScript Document
