/*
Täällä voit säätää sivuston sijaintia suhteessa näytön resoluutioon.
*/

<!-- Alku

function resize()
{
	var wide = window.screen.availWidth
	var high = window.screen.availHeight
	var maxh = 1004 // maksimikorkeus, 0 jos ei käytössä
	var maxw = 825 // maksimileveys. 0 jos ei käytössä
	var content = document.getElementById('content')
	content.style.position = 'absolute'

	if (maxh > 0 && high <= maxh)
	{
	content.style.height = high
	}
	
	if (maxw > 0 && wide <= maxw)
	{
	content.style.height = high
	}

	if (maxh > 0 && high > maxh)
	{
	content.style.height = maxh

	high = (high - maxh) / 2

	content.style.top = high
	}

	if (maxw > 0 && wide > maxw)
	{
	content.style.width = maxw

	wide = (wide - maxw) / 2

	content.style.left = wide
	}

}

//-->