Forum Moderators: open
I've never seen this behavior so far, and I check on Netscape 4 all the time. So let's debug what you've got.
The first thing I'd suggest is run your code throught the W3C's HTML validator [validator.w3.org]. If your code is valid and you still have a problem, then show us a code snippet (please replace any specific URLs with something generic) and we might be able to find a fix.
<FORM name=ff>
<INPUT type=button value="Opnieuw"name="Opn" onClick="history.go(0);">
<INPUT type=button value="Sluiten" onClick="window.close();">
</FORM>
in a menu.htm
function changetolotto()
{var lotto;
window.location.reload
lotto=window.open("lotto.htm","lotto","width=180,height=340,top=100,
left=100,resizable=no,scrollbars=no,menubar=no,toolbar=no,status=no,location=no");
}
</script>
</head>
<body>
<form>
<table>
<tr>
<td><input type = "button" value = "Mapping" onclick = "changeurl()"></td>
<td><input type = "button" value = "winkel" onclick ="changeToReservatie()"></td>
<td><input type = "button" value = "fotoalbum" onclick = "changetofotoalbum()"></td>
<td><input type = "button" value = "Quiz" onclick = "changetoquiz()"></td>
<td><input type = "button" value = "Lotto" onclick = "changetolotto()"></td>
</tr>
</table>
</form>
</body>
</html>
ofcourse trhes are snippets but the html is checked and it found no folds
document.write("<TABLE align=center bgcolor=tan border=1 ><tr><TH bgcolor=crimson colspan=6><Font size=3>
De lotto getallen</FONT></TH>");
for(i=0;i<42;i++)
{
if(i%6==0)
{
document.write("</TR><TR>");
}
if(checkGetal(i+1,alleGetallen))
{
document.write("<TH bgcolor=lightsteelblue><FONT SIZE=2>"+getallen[i]+"</font></TH>");
}
else
{
document.write("<TH><FONT size=2>"
+getallen[i]+"</FONT></TH>");
}
}
document.write("</TR></TABLE>");
document.write("<BR><H4 align=center>
Het reservegetal is:"+alleGetallen[6]+"</H4><BR>");
Have you tested a pop-up where the form tags are hard coded into the HTML, rather than using document.write, to see if the rendering problem persists?