Forum Moderators: open
J
<a href="" target="closeup" onClick="closeup = window.open('1030e.html', 'closeup', 'scrollbars=yes,resizable=yes,screenX=0,screenY=0,width=416,height=450'); return false;">click</a>
<a href="page.html target="_blank" onClick="javascript:popUpFunction('page.html');return false;">
While we're on the topic, target="_new" is not one of the "reserved" target names. And for HTML to validate, all other (non-reserved) target names should begin with an alphabetic character. Here are the four reserved cases:
The following target names are reserved and have special meanings._blank
The user agent should load the designated document in a new, unnamed window._self
The user agent should load the document in the same frame as the element that refers to this target._parent
The user agent should load the document into the immediate FRAMESET parent of the current frame. This value is equivalent to _self if the current frame has no parent._top
The user agent should load the document into the full, original window (thus canceling all other frames). This value is equivalent to _self if the current frame has no parent.W3C Reference [w3.org]
window.outerHeight = ( window.screen.availHeight / 2 );
Shawn