Here we go! Sorry, I made a typo!
"MenuBar"
In this page, you'll have to create a hyperlink surrounding your thumbnail images in the "img tag". After the link put the "target=MenuBar.html" tag. This makes it so your page pops up in the Mainwindow while keeping the SideMenu off to the side.
Example:
<a href="picture1.html" target="mainwindow"><img src="thumbnail1.gif"></a> <br>
"TargetWindow"
This is the page where you add the "frameset tag". DO NOT PUT IT IN THE BODY. This tag goes between the head tag.
Example:
<frameset cols="25%,75%">
<frame src="MenuBar.html" name="sidemenu" noresize>
<frame src="TargetWindow.html" name="mainwindow">
</frameset>
Pretty much MenuBar.html doesn't have to be exact. The HTML page you want to be off the side goes in front of sidemenu. I just put it there for an example. The same goes for TargetWindow.html.
-oddguy
