<head><title>helpframe1.html</title>
<script src=../window.js></script>
<script src=../examples.js></script>
</head>

<body>

<span id="First Page">
This is a helpFrame
</span>

<span id="Second Page">
This is second page
</span>

<span id="Third Page">
Any HTML element can be put here, like 
<h1><center>headers</center></h1>
or
<a href="http://mapserver.gis.umn.edu">hyperlinks</a>
<br><br>
or images
<img src=graphics/zoomin.gif>
</span>

<span id="Fourth Page">
And if the text is too long for the helpFrame, scrollbars will appear:
----<br>
----<br>
----<br>
----<br>
----<br>
----<br>
----<br>
----<br>
----<br>
----<br>
----<br>
----<br>
----<br>
----<br>
----<br>
----<br>
----<br>
----<br>
----<br>
like this
<br>
<br>
<br>
<br>
</span>

<script>
h=new helpFrame(30,30,200,300)

h.addPage("First Page")
h.addPage("Second Page")
h.addPage("Third Page")
h.addPage("Fourth Page")


</script>
</body>