Czy znacie może jakiś kodzik uniwersalny, przynajmniej żeby działało pod firefoxem i "nieśmiertelnym" explorerem

<html> <head> <script type="text/javascript"> function migocz(ID) { e = document.getElementById(ID); if (e.style.visibility != 'visible') {e.style.visibility = 'visible';} else {e.style.visibility = 'hidden';} } </script> </head> <body> <script type="text/javascript"> cos = setInterval("migocz('text');",500); // 500 to ilość milisekund wyświetlania/chowania </script> </body> </html>