Can someone explain why this works in IE and not in NN, hopefully with a workaround ;-)
<html>
<body>
<iframe name="test" id="test"></iframe>
<form>
<input type="button" onclick="doit()">
</form>
<script language="javascript">
function doit()
{
document.test.document.open("text/html"
;
document.test.document.write("HELLO"
;
document.test.document.close();
}
</script>
</body>
</html>
<html>
<body>
<iframe name="test" id="test"></iframe>
<form>
<input type="button" onclick="doit()">
</form>
<script language="javascript">
function doit()
{
document.test.document.open("text/html"

document.test.document.write("HELLO"

document.test.document.close();
}
</script>
</body>
</html>