Forum Moderators: open
Have a problem with loading images into javascript windows, where the images are over a certain size. In such cases the browser (IE) "kindly" reduces the size of the image to fit into the user's screen, and therefore the javascript window looks too big for the image - until the user finds that if they click on the image and scroll to the bottom IE provides an icon which allows the image to expand to its full size - not very helfpul as the user has to know what they are trying to achieve to get the image to display at its intended size.
Is there any way of overridiing this beahviour. The code I am using at present typically looks like this (user clicks on a thumbnail to load full size image):
<a href="javascript:void window.open('picture-big.jpg','gw','width=680,height=950,menubar=no,scrollbars=yes,toolbar=no,resizable=yes,top=10,left=100')"><img src="picture-small.jpg" alt="click on this thumbnail" style="width:100px; height:139px;"></a>
Thanks