Quote:
narf poit chez BOOM said:
2nd: Some links I click on do that, I have no idea why it happens. Here's the link html if you want to try to figure it out: <center><b><a HREF="MyMultiplayerFPS.html" TARGET="main">A multi-player FPS I'm working on.</a></b></center>
|
You are using the wrong target; your lower frame is named "bottom"; you don't have a frame named "main", so when you target it, it creates a new window named "main" to put it in. All subsequent calls that target "main" will go to that window. You need to use <center><b><a HREF="MyMultiplayerFPS.html" TARGET="bottom">A multi-player FPS I'm working on.</a></b></center>