var OldBarva; var OldBack; function hm_over(x) { if (document.all) { /* IE */ str = 'a = document.all.m_' + String(x); eval(str); OldBarva = a.style.backgroundColor; a.style.backgroundColor = "#f5b75f"; str = 'a = document.all.l_' + String(x); eval(str); a.style.backgroundColor = "#f5b75f"; str = 'a = document.all.r_' + String(x); eval(str); a.style.backgroundColor = "#f5b75f"; } else { /* Std-compliant browsery */ a = document.getElementById("m_"+x); OldBarva = a.style.backgroundColor; a.style.backgroundColor = "#f5b75f"; a = document.getElementById("l_"+x); a.style.backgroundColor = "#f5b75f"; a = document.getElementById("r_"+x); a.style.backgroundColor = "#f5b75f"; } } function hm_out(x) { if (document.all) { /* IE */ str = 'a = document.all.m_' + String(x); eval(str); a.style.backgroundColor = OldBarva; str = 'a = document.all.l_' + String(x); eval(str); a.style.backgroundColor = OldBarva; str = 'a = document.all.r_' + String(x); eval(str); a.style.backgroundColor = OldBarva; } else { /* Std-compliant browsery */ a = document.getElementById("m_"+x); a.style.backgroundColor = OldBarva; a = document.getElementById("l_"+x); a.style.backgroundColor = OldBarva; a = document.getElementById("r_"+x); a.style.backgroundColor = OldBarva; } }