Try doing something like this:
Code:
function navigateHome() {
top.frames["mainFrame"].location.href = "home.htm";
top.frames["navFrame"].locaiton.href = "topmenu.htm";
}
Then in your link, do this:
Code:
<a href="javascript:navigateHome()">Home</a>
Hope this helps.
Nicholas C. Zakas
Author, Professional JavaScript for Web Developers (ISBN 0764579088)
http://www.nczonline.net/