REPAIR FOR ZOOM IN/OUT FEATURE OF INTERNET EXPLORER WEB ACCESSORIES Repair notes compliments of MS-MVP Jon Kennedy The zoom in/out tool has a coding error. Here's how to fix it: After installing the Web Accessories, go tothe \Windows\Web folder on your computer. Open the files zoomin.html and zoomout.html in Notepad or a similar text editor. In zoomin.html, find: h = parentwin.event.srcElement.height * 2; parentwin.event.srcElement.height = h; w = parentwin.event.srcElement.width * 2; parentwin.event.srcElement.width = w; Rearrange the lines so that it reads: h = parentwin.event.srcElement.height * 2; w = parentwin.event.srcElement.width * 2; parentwin.event.srcElement.height = h; parentwin.event.srcElement.width = w; (Spaces between the lines don't matter.) Do the same for zoomout.htm, substituting the * with the /.