Hallo Dietrich,
dass kann nicht sein,
da mittlerweile erfahren habe, dass durch die „if
(document.getElementById)“, insbesondere durch ersetzen von
„all“, durch „getElementById“ die Geschwindigkeit auch im FF
veränderbar ist. Leider im Moment nur etwas unsauber, aber ich
hoffe, dass ich bald auch noch den Rest erfahren werde, wie
das script wirklich sauber definiert ist
vergiß es, das ist Kuddelmussel. Du wirfst hier DOM level-0
und DOM level-2 durcheinander. Programmiererei ist (eigent-
lich) keine experimentelle Wissenschaft 
Ich hab noch mal nachgesehen, man kann dem FF mit
blink {
text_decoration:inherit;
}
das Blinken abgewöhnen und danach normal
mit Javascript blinken, siehe:
B.L.I.N.K.
$blo=[]; $bli=[]; $int=0; $vis=0;
function doblink(speed) { // set <blink> tags to period ‚speed‘
++$vis
for(var i=0; i<$bli.length; i++) {
$bli[i].style.fontWeight = ‚bold‘
$bli[i].style.textDecoration = isIE() ? ‚‘ : ‚inherit‘
$bli[i].style.visibility = $vis & 1 ? ‚‘ : ‚hidden‘
}
}
function unblink() { // reset blink tags to default ($blo[])
for(var i=0; i<$bli.length; i++) {
$bli[i].style.fontWeight = $blo[i].fontWeight
$bli[i].style.textDecoration = $blo[i].textDecoration
$bli[i].style.visibility = $blo[i].visibility
}
}
function bl_on(seconds) { // switch to Javascript blink mode
if(!$int) {
$bli = document.getElementsByTagName(‚blink‘)
for(var i=0; i<$bli.length; i++) {
$blo[i] = {
fontWeight: $bli[i].style.fontWeight,
textDecoration: $bli[i].style.textDecoration,
visibility: $bli[i].style.visibility
}
}
$int = window.setInterval(doblink, seconds*1000)
}
}
function bl_off() { // reset to standard blink mode
if($int) {
window.clearInterval($int)
unblink()
}
$int = 0
}
function isIE() { return document.compatMode && document.all }
Blink demo
Das soll in Firefox & IE blinken!
Unterabschnitt
Das hier auch.
Grüße
CMБ