function blinkTxt () {
        setTimeout('blinkTxt();',600);
        document.body.setAttribute("class", "attribute-test");
        //********** Если перед нами Мозилла или Опера ************//
        if (document.body.className == "attribute-test") {
                var a = document.getElementById('a');
                var color = a.getAttribute('style');
                //alert(a.style.backgroundColor);
                if ((a.style.backgroundColor == "rgb(255, 255, 255)") || (a.style.backgroundColor == "#ffffff")) {
                        a.setAttribute('style', 'color: #ffffff; background-color: #ad011d;');
                } else {
                        a.setAttribute('style', 'color: #ad011d; background-color: #ffffff;');
                }
        //********** О ужас! Это Internet Explorer! **************//
        } else {
                var a = document.getElementById('a');
                if (a.style.color == "#ad011d") {
                        a.style.color = "#ffffff";
                        a.style.backgroundColor = "#ad011d";
                } else {
                        a.style.color = "#ad011d";
                        a.style.backgroundColor = "#ffffff";
                }
        }
}

