referencjaElementu.style.color = "00ff00";
referencjaElementu.style.font = "bolder small-caps 16px 'Andale Mono', Arial, sans-serif";
referencjaElementu.style.fontFamily = "'Century Schoolbook', Times, serif";
referencjaElementu.style.fontSize = "22px";
referencjaElementu.style.fontStretch = "narrower";
referencjaElementu.style.fontStyle = "italic";
referencjaElementu.style.fontVariant = "small-caps";
referencjaElementu.style.fontWeight = "bolder";
referencjaElementu.style.textDecoration = "line-through";
referencjaElementu.style.textTransform = "uppercase";

---------

function migotanieTla(elem, licznik) {
    // jeeli parametr krotnoci ma warto null, trzeba nada mu warto zerow
    licznik = (licznik) ? licznik : 0;
    // jednorazowe pobranie wartoci dla wszystkich porwna
    var aktKolor = document.getElementById(elem).style.backgroundColor;
    if (aktKolor == "rgb(255,255,0)" || aktKolor ==  "#ffff00") {
        document.getElementById(elem).style.backgroundColor = "#ff0000";
    } else {
        document.getElementById(elem).style.backgroundColor = "#ffff00";
    }
    if (licznik < 10) {
        // ponowne wywoanie funkcji za ok. 1/10 sek. ze zwikszon wartoci licznika
        setTimeout("migotanieTla('" + elem +"'," + ++licznik + ")", 100);
    } else {
        // zakadamy biae to strony
        document.getElementById(elem).style.backgroundColor = "#ffffff";
    }
}

---------

