function resize ()
{
	var height = window.innerHeight;
	
	document.getElementById ("content").style.height = parseInt (height - 140) + "px";
	
	if (height < 554)
	{
		document.getElementById ("content").style.height = "428px";
		
	}
}

window.onresize = resize;