break my frame

Whats the code for making a link in my main frame open a new full size window?<!--content-->check out this site:<br />
<br />
<!-- m --><a class="postlink" href="http://www.htmlhelp.com/reference/html40/special/a.html">http://www.htmlhelp.com/reference/html40/special/a.html</a><!-- m --> <br />
<br />
but, in brief-<br />
<br />
in the link <a href=http://www.htmlforums.com/archive/index.php/"blah.html">Click Me</a><br />
add a new attribute, so it looks like <a href=http://www.htmlforums.com/archive/index.php/"blah.html" target="target_name">Click Me</a><br />
<br />
target_name can be any name of a frame that is open, or<br />
<br />
open in new window : _blank<br />
open in current window, but outside of frame : _top<br />
<br />
there are others. By default, the target is the frame that the link is in.<!--content-->Originally posted by Horus_Kol <br />
<br />
<br />
open in new window : _blank<br />
<br />
<br />
Thats exactly what i needed.Thank you.<!--content-->
 
Back
Top