Code: <SCRIPT LANGUAGE="JavaScript"> <!-- function NewPage(){ document.open(); //(1) document.write( "<HTML><HEAD>" ); document.write( "<TITLE>NEW Page</TITLE></HEAD><BODY>" ); document.alinkColor = 0xff0000; //(2) document.bgColor = 0xffcccc; //(3) document.fgColor = 0xffffff; //(4) document.linkColor = 0x000000; //(5) document.vlinkColor = 0x0088cc; //(6) document.write( "<hr width=50% align=left>"); document.write( "<a href='index.html'>Index</a> | <a href='push_button.htm'>Next</a>"); document.write(" | <a href='..index.html'>Home</a>"); document.write( "<hr width=50% align=left><p>"); document.write("<font size=4><b>This URL is " , document.location , " .</b></font><P>" ); //(7) document.write("<dl><dd><font size='10' color='#000000'><b><blink>Hello World!</blink></b></font></el><br>"); //document.write("<form><input type=button value=\'hello 2\' onclick=\'location=\"\;compu2\.htm\"\;\'>"); // dodument.write("</form>"); document.write("<a href='compu2.htm'><h3><font color='#0055ff'>Hello 2</font></h3></a>"); document.write( "</BODY></HTML>" ); document.close(); //(8) } //--> </SCRIPT>