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

