I'm using a code to have some thumbnails open in a new window. But for one picture, the code simply refuses to work. I can't find any differences between it and any other codes that are functioning fine.
Somehow broken code:
Code:
<a href="AubreysWeave.html" onclick="NewWindow(this.href,'Aubrey's Weave','1500','850','yes','center');return false" onfocus="this.blur()">
THUMBNAIL CODE </a>
Other, perfectly functional code:
Code:
<a href="Frame.html" onclick="NewWindow(this.href,'Frame','900','820','yes','center');return false" onfocus="this.blur()">
THUMBNAIL CODE </a>
There's nothing on the page the broken code links to that isn't on any of the other pages, either, just a bit of text and some CSS styles.
Anyone have any ideas?