<!--
function warsztaty()
{
	// długość trawki + reakcja na długą treść
		var trawka = zwrocObiekt('trawka',0);
		var dim = getWindowDimensions();
		var agt=navigator.userAgent.toLowerCase();
		var isFF = (agt.indexOf("firefox") != -1)?(true):(false); // Firefox liczy rozmiary obrazu dodając do nich rozmiary suwaków
		var poprawkaDlaDuzychRoz = (screen.height>800)?(15):(0);
		
		var tresc = zwrocObiekt('tresc',0);
		var trescPos = findPos(tresc);
		var longTresc = ((trescPos[1]+tresc.offsetHeight+poprawkaDlaDuzychRoz)>(dim[1] - trawka.offsetHeight))?(true):(false);
		
		if(isFF&&longTresc)
			trawka.style.width = (dim[0]-15+"px");
		else if(isFF)
			trawka.style.width = ("100%");
		else
			trawka.style.width = (dim[0]+"px");
			
		if(longTresc)
		{
			trawka.style.bottom = "auto";
			trawka.style.top = trescPos[1]+tresc.offsetHeight+poprawkaDlaDuzychRoz+"px";
		}
	
	// przesuwanie Treści i Trawki dla większych rozdzielczości
	if(screen.height>800)
	{
		tresc.style.top = 120+"px";
	}
	if(screen.width>1024)
	{
		tresc.style.left = Math.floor((dim[0] - tresc.offsetWidth - tresc.offsetLeft)/2) + "px";
		var menuW = zwrocObiekt('menuW',0);
		menuW.style.left = 175+"px";
		var acc = zwrocObiekt('stopka',0);
		acc.style.right = "14%";
	}
}
-->
