I have a couple of "IE Power toys" from way back. (I think that's the right name.) They allow me to right click on any image, and zoom in or out. I downloaded them from Microsoft. I'll see if I can find them again, and let you know.
[Edit]
I found it. It's
Web Accessories for Internet Explorer 5.
Note: The last time I checked, there was a bug in zoomin and zoomout. It's easily fixable, though. After installing, you need to edit zoomin.htm and zoomout.htm. (On my system they are installed in c:\windows\web.)
In zoomin, replace the following lines:
Code:
h = parentwin.event.srcElement.height * 2;
parentwin.event.srcElement.height = h;
w = parentwin.event.srcElement.width * 2;
parentwin.event.srcElement.width = w;
with:
Code:
h = parentwin.event.srcElement.height * 2;
w = parentwin.event.srcElement.width * 2;
parentwin.event.srcElement.height = h;
parentwin.event.srcElement.width = w;
And in zoomout, these lines:
Code:
h = parentwin.event.srcElement.height / 2;
parentwin.event.srcElement.height = h;
w = parentwin.event.srcElement.width / 2;
parentwin.event.srcElement.width = w;
with:
Code:
h = parentwin.event.srcElement.height / 2;
w = parentwin.event.srcElement.width / 2;
parentwin.event.srcElement.height = h;
parentwin.event.srcElement.width = w;
Without these changes, the picture's aspect ratio gets messed up when you zoom in and out.
[/Edit]