function podswietlanie3(img,nazwa,url,typ)
{	
	if(typ)
	{
		document.images[nazwa+'_lewy'].src=url + '/images/'+ img +'_lewy.png';
		document.getElementById(nazwa+'_tlo').style.background='url('+url+'/images/'+img+'_tlo.png)';
		document.images[nazwa+'_prawy'].src=url + '/images/'+ img +'_prawy.png';
	}
	else
	{
		document.images[nazwa+'_lewy'].src=url + '/images/'+ img +'.png';
		document.getElementById(nazwa+'_tlo').style.background='url('+url+'/images/'+img+'.png)';
		document.images[nazwa+'_prawy'].src=url + '/images/'+ img +'.png';
	}
}

function podswietlanie1(img,nazwa,url,typ)
{	
	if(typ)
		document.images[nazwa].src=url + '/images/'+ img +'_on.png';
	else
		document.images[nazwa].src=url + '/images/'+ img +'.png';
}
