That is because you set the target.
Code:
<a href="amateur.php" target="amateur">AMATEUR ~</a>
The browser is looking for a target "amateur" (frame or window) and if it doesnt find it it creates a new window.
If you remove the target attribure then it will probably work. You can also set it to "_top". This is the "top" or main frame of the browser. Like this:
Code:
<a href="amateur.php" target="_top">AMATEUR ~</a>
If you meant to set the title (which is showed as a tooltip in the browser) then you should do this:
Code:
<a href="amateur.php" title="amateur" target="_top">AMATEUR ~</a>
For more information see:
http://www.w3schools.com/html/html_links.asp
Hope this helps. Good luck with your site.
