QUOTE(Durban @ May 3 2007, 07:04 AM)

I would like to be able to click a graphic on screen that pops a window open of specific size.
See the FAQ entry
How do I create a link that opens a new window of a specific size?QUOTE(Durban @ May 3 2007, 07:04 AM)

I can do it with a text link:
<a href="java script:ShowPopUp('http://mywebpage',500,500)">Click Here</a>
You shouldn't use the javascript: prefix. In
href attributes, you should use real URLs instead (as demonstrated in the FAQ entry linked above). In
onclick and other event handlers, you don't need it.
QUOTE(Durban @ May 3 2007, 07:04 AM)

I can also do it with a graphic - just cant specify size:
<a target="_blank" href="http://mywebpage">
<img border="0" src="http://mygraphic"</a>
Can anyone help??
The tags for the
a element are the same whether it's a graphic link or a text link. The only difference is what goes between the <a> and the </a>.
BTW, make sure you use
appropriate alt attributes for graphic links.