No solo las capas, sini el estilo.
Yo hago siempre un condicional:
Código:
function hiLight(name, color) {
if (document.getElementById) {
document.getElementById(name).style.backgroundColor = color;
} else
if (document.all) {
document.all[name].style.backgroundColor = color;
}
}