
            var i = 0;
            function blink(text){
                if (document.layers) 
                    document.write('<span class=normal><blink>' + text + '</blink></span>');
                else {
                    document.write('<span class=normal id=\"s' + i + '\">' + text + '</span>');
                    count(i++);
                }
            }
            
            function count(i){
                var s = document.getElementById("s" + i);
                with (s.style) visibility = (visibility == "visible") ? "hidden" : "visible";
                setTimeout("count(" + i + ")", 455);
            }
            