calling a new window and defining its size

liunx

Guest
i have an image map, that i want to use to link different parts to a new window with expanded information. how do a.) call for a new window and b.) define the size of the window?<br />
<br />
TIA<!--content-->May be you wanna taka a look at the link below.<br />
<!-- m --><a class="postlink" href="http://68.145.35.86/skills/javascripts/OpenImageSizedWindow2.html">http://68.145.35.86/skills/javascripts/ ... ndow2.html</a><!-- m --><br />
<br />
Links on the above page show functionality to resize a new window dynamically depending upon the size, and another link displays in addtion to the above how to open a centralised window with reference to the whole screen.<!--content-->would this line of code work?<br />
<br />
<br />
<br />
<area shape="rect" href=http://www.webdeveloper.com/forum/archive/index.php/"locations.html" onclick="window.open(this.href,'child', 'height=500,width=400'); return false" window.moveTo(40,40) coords="358, 378 453, 402"><!--content-->tiny bit of a change...<br />
<br />
<area shape="rect" href=http://www.webdeveloper.com/forum/archive/index.php/"locations.html" onclick="window.open(this.href,'child', 'height=500,width=400'); window.moveTo(40,40);return false;" coords="358, 378 453, 402"> <br />
<br />
the above should work.....<!--content-->
 
Back
Top