<head><title>helpframe2.html</title> <script src=../window.js></script> <script src=../examples.js></script> </head> <body> <span id="First Page"> Text for the first page </span> <span id="Second Page"> And this is the text of the second page </span> <script> h=new helpFrame(10,200,200,300) w1 = new win(250,120,400,400,"Window on First Page") h.addPage("First Page",w1) w2 = new win(10,20,500,100,"Window on Second Page") h.addPage("Second Page",w2) </script> </body>