<!-- 

function setWidth(maximum) {
	if (document.body.clientWidth <= 978) x = "978"
	else if (document.body.clientWidth >= maximum) x = maximum
	else x = "100%"
	return x;
}

// -->
