Dreamweaver Double Pop Up Window Problem

I wrote this in the Java Script Forum. I'll write it here shorter:<br />
<br />
Here is my site <!-- w --><a class="postlink" href="http://www.xn3ct.net">www.xn3ct.net</a><!-- w --><br />
go to the right and click on any of the 3 graphics, there is suppossed to be one resized window that pops up. But the problem is two windows open.<br />
<br />
If you check out my source code, it's messy because I did the site in Fireworks and then exported it to Dreamweaver, or I think it was the opposite, I opened the Fireworks site from Dreamweaver and did the final site from there.<br />
<br />
So basically I have 9 images in the site that are links to pop up windows with specific size. However the problem is that once you click on the link two indows pop up:<br />
1 is the with the specific size - the one I want, and<br />
2 is a normal, full screen window with the same image centered.<br />
<br />
How do I get rid off of that second one? Thanks.<br />
<br />
james<!--content-->Seems to work fine for me!<br />
<br />
all i can think of is because you have the <a> tag opening a window as well as the javascript.<br />
<br />
try:<br />
changing the <a href=http://www.webdeveloper.com/forum/archive/index.php/"htmlx.html" to <a href="#"<br />
deleting the target="_blank"<br />
and adding ; return FALSE; to the end of the onMouseOver and onMouseOut<br />
on all your links<!--content-->Moderators Note:<br />
Cross posts are not appreciated.<!--content-->
 
Back
Top