function setContentheight(height)
{
	var c = document.getElementById('content');
	if(height < 450)
	{
		height = 450;
	}   
	c.style.height = height + 'px';
}

