Forum Moderators: open
<a href="#" target="stage" onClick="history.go(-1)">Back</a>
If you haven't named your windows it is still possible to reach them by their position in the frameset.length array. "parent.frames[0].location.href" would change url of one of the framewindows. parent.frames[1] another and so on.
The frameset itself is the "parent" and very often also the "top" unless it is part of another frameset.
I believe, although I'm not 100% sure, that you can dedicate a name of the frameset itself, and reach it by using the name as in "myFrameName.history.back()".
Otherwise - try using "parent" or "top" before your action.
[developer.netscape.com...] explains very well how windows and frames should be referenced to as objects. Check the Client-Side JavaScript Reference documentation.
Good luck,
Katarina