OK, I think I found it. Shame on you Tony for writing an IE-specific script like that. document.all is an IE'ism, you need something like
Code:
if (document.all) {
document.all.countdown.innerHTML=foo;
} else if (document.layers) {
document.layers.countdown.document.write(foo);
}
or something like that - I don't do web or javescript stuff.