var currentcolor; function podswietl(id,color){ if (color != ''){ currentcolor=document.getElementById(id).style.backgroundColor; document.getElementById(id).style.backgroundColor=color; }else{ document.getElementById(id).style.backgroundColor=currentcolor; } }//end podswietl //Zaznacza pole formularza function zaznacz_pole(nazwa_elementu){ var element = document.getElementById(nazwa_elementu); //element.style.borderColor="#0080c0"; element.style.backgroundColor="#84ffc1"; element.style.color="#000000"; }//end zaznacz_pole(nazwa_elementu) //Odzaznacza pole formularza function odznacz_pole(nazwa_elementu){ var element = document.getElementById(nazwa_elementu); //element.style.borderColor="black"; element.style.backgroundColor="#f9fffb"; element.style.color="#007171"; }//odznacz_pole(nazwa_elementu) function zaznacz_pole2(nazwa_elementu){ var element = document.getElementById(nazwa_elementu); element.style.borderColor="#0080c0"; element.style.backgroundColor="#84ffc1"; element.style.color="#000000"; zaznacz_label(nazwa_elementu+"_label"); } function odznacz_pole2(nazwa_elementu){ var element = document.getElementById(nazwa_elementu); element.style.borderColor="#408080"; element.style.backgroundColor="#f9fffb"; element.style.color="#007171"; odznacz_label(nazwa_elementu+"_label"); } function zaznacz_label(nazwa_elementu){ var element = document.getElementById(nazwa_elementu); element.style.color="#006262"; } function odznacz_label(nazwa_elementu){ var element = document.getElementById(nazwa_elementu); element.style.color="#000000"; }