This is almost working... I'm hoping someone here can help. Here are links on my index.html:<br><br><A HREF="frame.html?history.html">History</A> <br><A HREF="frame.html?route.html">Route</A> <br><A HREF="frame.html?roster.html">Roster</A><br><br>They point to frame.html listed below:<br><br><html><br><script type="text/javascript" language="JavaScript"><!--<br>document.write('<frameset rows="65,*">');<br>document.write('<frame src="menu.html" name="nav" target="body">');<br>document.write('<frame src="' + (location.search ? unescape(location.search.substring(1)):"index.html"
+ '" name="body" target="_self">');<br>document.write('<\/frameset>');<br>//--><br></script><br></html><br><br>Frame.html will create 2 frames and will load whichever html was picked in the index, into the bottom frame named "body". The top frame, "nav", contains menu.html listed below:<br><br><HTML><br><HEAD><br><base target="body"><br></HEAD><br><BODY><br><center><br><A HREF="history.html">History</A> <br><A HREF="route.html">Route</A> <br><A HREF="roster.html">Roster</A><br></center><br></BODY><br></HTML><br><br>Now, say I select "Route" in my index.html. Frame.html will display route.html in the frame named "body". From the top frame, containing menu.html, I will then select "Roster". Roster.html will then load in the frame named "body", as it should. The problem now arises when I click the "Refresh" button on my browser. It refreshes back to "Route" instead of "Roster". How can I change the code to make the refresh button work?<br>