Hallo Hobbes,
getElementByID funz bei mir nicht... ich hab 4.0, brauch man vielelich eine neuere Version?
So sieht die function aus... kannst Du bitte damit etwas anfangen?
function showit(text)
{
if (document.layers) {
document.Navigate.visibility="show";
document.Navigate.document.open();
document.Navigate.document.write(text);
document.Navigate.document.close();
} else if (document.all) {
document.all.Navigate.style.visibility = 'visible';
document.all.Navigate.innerHTML = text;
} else if (document.getElementById) {
r=document.getElementById("Navigate");
r.style.visibility = 'visible';
r.innerHTML = text;
} }
MfG Viper