Ups,
da war eine Klammer an der falschen Stelle. Hier gleich das ganze Dokument:
<html>
<head>
<script>
function testIt()
{ if (document.height)
alert('oh prima, '+navigator.appName+' kennt document.height und sagt: '+document.height);
else if (document.images[document.images.length-1].offsetTop)
alert('oh prima, '+navigator.appName+' kennt document.images['+(document.images.length-1)+'].offsetTop und sagt:'+document.images[document.images.length-1].offsetTop);
}
</script>
</head>
<body onload="testIt()">
Hallo<br><br>
<img src="file:///" width=1 height=1>
</body>
</html>
Mirko