if(screen.width<1024)
	alert("Zmien prosze rozdzielczosc na 1024x768 lub wieksza. Strona jest niedostosowana do Twoich warunków.\n\nPlease change Your resolution to 1024x768 or higher. Page is not adapt to Your conditions.");
	
function to8d(size)
{
	while(size%8)
		size++;
	return size;
}
function downto8d(size)
{
	while(size%8)
		size--;
	return size;
}

function w8resize()
{
	var wsize = screen.width>1024?downto8d((screen.width-1000)/2):0;
	document.getElementById("td1").width = wsize;
}

function h8resize(eid, booster)
{
	var hsize = document.getElementById(eid).offsetHeight;
	document.getElementById(booster).height = to8d(hsize);
}