
Originally Posted by
Vagrant Logic
All the standard ways of doing a javascript link don't work.
Such as? Did you try using one of the links provided in the markup:
Code:
<a href="#" onMouseover="modifyimage('dynloadarea', 0)">image 1 (onmouseover)</a><br>
<a href="#" onMouseover="modifyimage('dynloadarea', 1)">image 2 (onmouseover)</a><br>
<a href="#" onClick="return modifyimage('dynloadarea2', 2)">image 3 (onclick)</a><p>
and using the window.open() method with standard params for a bare window sized to your specifications? It could be added as onClick, to an existing onClick, or as href="javascript:window.open()". window.open() is a standard JavaScript way of doing a link, especially in a new window. Two scripts you might want to check out, one would help implement this idea:
Popup Window Generator
and this one provides an alternative:
DHTML Window
Bookmarks