JS Continue function error

Hi ALL,

I am here whit some javascript error in my program. Yesterday I created a small program. I used Continue function and wanted print some number after 5 but when I executed program it displayed serial number 1 to 10.

Please check this code and let me show how can I print serial number after any number.

Here is my code.

[FONT=&quot]<html>
<body>
<script type=“text/javascript”>
var i=0
for (i=0;i<=10;i++)
{
if (i==3){continue}
document.write(“Het getal is " + i)
document.write(”<br />")
}
</script>
</body>
</html>[/FONT]

Thanks,
Larry M. Wong
Acai
[FONT=&quot][/FONT]