View Full Version : POP up windows


iwasneocoolbabe
07-03-2003, 07:49 PM
Hi! I have a site with an image map, and i want it so that when it clicks on the enter button, it opens in a new non-resizable window that the width is 517 and the height is 334. This is the code I have, can someone help me with it. The site URL (if u need it) is http://www22.brinkster.com/dollmagic/

<IMG NAME="dollmagic20" SRC="dollmagic2.gif" WIDTH="517" HEIGHT="334" BORDER="0" USEMAP="#dollmagic2">

<MAP NAME="dollmagic2">
<AREA SHAPE="rect" COORDS="185,159,339,254" HREF="http://www22.brinkster.com/dollmagic/index2.htm" TARGET="_blank" width="517" height="344" ALT="Enter Doll Magic..">
</MAP>

thank you sooooo much!

Alcy
07-03-2003, 07:53 PM
Something like this....

<head>
<script language="javascript">
//<!--
function popup()
{ window.open ("http://www22.brinkster.com/dollmagic/index2.htm", "popup", "width=517, height=344, location=0, menubar=0, resizable=0, scrollbars=0, status=0, titlebar=1, toolbar=0") }
-->
</script>
</head>

<body>

<IMG NAME="dollmagic20" SRC="dollmagic2.gif" WIDTH="517" HEIGHT="334" BORDER="0" USEMAP="#dollmagic2">

<MAP NAME="dollmagic2">
<AREA SHAPE="rect" COORDS="185,159,339,254" HREF="javascript:popup()" ALT="Enter Doll Magic.." TITLE="Enter Doll Magic..">
</MAP>

</body>


http://www.lissaexplains.com/java4.shtml

iwasneocoolbabe
07-03-2003, 08:25 PM
thank you sooooo much! that helped alot! =D