Specifying New Window Size

G

Greg

How do I specify the size of a new window after the hyperlink is clicked? Is
there an easy way? If there is a way, please describe it as simply as
possible.

Thanks in advance,

Greg
 
C

cookoonest

This lets you control everything.

<a href="#"window.open('url_location',
'StatusBar=yes','toolbar=yes,resizable=yes,scrollbars=yes,width=500,height=5
00,left=0,top=0');return
false" title="tool tip" target="_blank">link anchor text or graphic</a>
 
Top