function adjustLayout()
{
	var hContent = xHeight ("content");
	hOpt = Math.max (xClientHeight() - 261, Math.max (xHeight ("vmenu"), 360));
	xHeight ("content", hOpt);
}

window.onload = function()
{
	xAddEventListener(window, "resize", adjustLayout, false);
	adjustLayout();
}