/*
	funkcja: projekty2()
	autor: Wojciech Włodarski (c) 2007 dla DOROŻKARNIA
	opis:
			standardowe pozycjonowanie zależne od przeglądarki (IE, FF, Op) i rozdzielczości (dwustopniowe: 1024 i mniejsze oraz powyżej 1024)*/
			
function mapaS()
{
	var dim = getWindowDimensions();
	var agt=navigator.userAgent.toLowerCase();
	var isFF = (agt.indexOf("firefox") != -1)?(-15):(0); // Firefox liczy rozmiary obrazu dodając do nich rozmiary suwaków
	
	var stopka = zwrocObiekt('stopkaGraph',1);
	stopka.width = (dim[0] + isFF) + "px";
	
	var mother = zwrocObiekt('mother',0);
	mother.style.left = (Math.round((dim[0]-mother.offsetWidth + isFF)/2)) + "px";
}
