
function zmianaRozmiaru()
{
	var wys;
	if (self.innerHeight) // all except Explorer
	{
		wys = self.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientHeight)
		// Explorer 6 Strict Mode
	{
		wys = document.documentElement.clientHeight;
	}
	else if (document.body) // other Explorers
	{
		wys = document.body.clientHeight;
	}
	document.getElementById("content-block").style.height = (wys - 150) + "px";
}

self.onresize = zmianaRozmiaru;


