My interpretation: you've built a web page containing an image. When clicked, that image causes a new window to be opened, and simultaneously scrolls the page containing the image to the top of the page.
If I've understood correctly, this is usually caused by HTML that looks like
- Code: Select all
<a href="#" onclick="window.open('http://www.yahoo.com/')">
<img src="yahoo.gif">
</a>
This construction is simply ignorant, and disappointingly common. The authors of Dreamweaver are not supposed to be dummies. If I were a paying customer, I think I'd let them know I expected better.
In the meantime, it's difficult to prescribe an exact fix not knowing the particulars of your webpage. For my own example, I suggest
- Code: Select all
<a href="http://www.yahoo.com" target="_blank">
<img src="yahoo.gif" alt="yahoo">
</a>
UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8) Gecko/20051113 Firefox/1.5