link target frame

hey folks.<br />
i have a web page system which has an index.html with an iframe loaded inside. index.html has a javascript menu on the side which expands out when you put your mouse over it. it has a list of my sites that should load up in the iframe. (it's like an exhibition of the sites which i have made).<br />
index.html has this code:<br />
<br />
<html><br />
<head><br />
...javascript menu code with links to my other sites...<br />
</head><br />
<br />
<body><br />
<iframe name=iframe src=http://www.webdeveloper.com/forum/archive/index.php/"http://www.mysite.com" width=100% height=100% marginwidth=0 marginheight=0><br />
</body><br />
</html><br />
<br />
<br />
this works all well and nice. except one of my online websites uses a navigation bar with links that have target="_top"this just wipes out the iframe, and loads up the website over index.html, and you lose the navigation bar.<br />
is there a way to set all _top targets to act as _parent.... or is there some way to stop the nav bar being wiped out?<br />
<br />
many thank :)<br />
ps. if this isn't possible, please let me know, as i'll stop trying!<!--content-->Sure there is, get a better navigational system that doesn't use frames. Failing that get rid of your target="_top". Failing that, no.<!--content-->
 
Back
Top