First page Back Continue Last page Image

Example Code

<html>

<head><title>Main Window</title>

</head>

<body bgcolor="#ffffff">

<center>

<h1>This window is looping madly!</h1>

<script language="javascript">

<!-- Hide script from old browsers

newWindow = window.open('', 'newWin', 'toolbar=yes,location=yes, \

scrollbars=yes,resizable=yes,width=300,height=300')

newWindow.document.write("<html><head><title>Generated Window</title> \

</head><body bgcolor=white><h2>This window shows the \

result from the other window</h2>")

for (i=0; i<100; i++) {

newWindow.document.writeln("<br>The loop is now at: " + i)

}

newWindow.document.write("</body></html>")

newWindow.document.close()

// End hiding script from old browsers -->

</script>

</center>

</body>

</html>