function zmiana(i,nazwa) {
  nazwa = "img/" + nazwa +".gif";
  document.images[i].src=nazwa;
}


function zmiana2(tmp,kolor1,kolor2,nazwafirmy){

with(tmp){
     if (style.color==kolor1) {
       style.color=kolor2;
       style.textDecoration="none";
       top.status=nazwafirmy;
     }
     else {
       style.color=kolor1; 
       style.textDecoration="underline";
       top.status=title;
     }
   }
}   
function zmiana1(nazwa){
 with(document)
  {
    if (nazwa.style.textDecoration=="none")
	    nazwa.style.textDecoration="underline";
	else	
		nazwa.style.textDecoration="none";	
   }
}


