Hi there,
From what I can see, you have a few problems in your page:
Code:
<a onClick="selectedTab('List')"; href="" class="nav_level2_selected" id="issues_list_nav_level2_list">List</a>
<a onClick="selectedTab('New')"; href="" class="nav_level2" id="issues_list_nav_level1_new">New</a>
Right now, the page links to "", which will end up as the current folder. To have the onclick fire correctly, instead of the original href, you'll need to link to #. So, this should work:
Code:
<a onClick="selectedTab('List')"; href="#" class="nav_level2_selected" id="issues_list_nav_level2_list">List</a>
<a onClick="selectedTab('New')"; href="#" class="nav_level2" id="issues_list_nav_level1_new">New</a>
Also, change the () for the frames to [], as in:
window.frames["ifrList"].location.href
Internet Explorer will let you get away with using parentheses, but to be cross browser you need the square brackets.
Cheers,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.