Originally posted by: MrChad
Originally posted by: oog
If you look at the documentation for window.open for IE, it says that 2nd parameter has to be one of several special values. You can't just put in whatever string you want. Take a look at this page for valid values:
Documenation for window.open()
The documentation you referenced doesn't specify that the second parameter
must be one of those special values. It's quite common to call window.open() with a window name for the second parameter that you can reference later.
I suspect that the issue is the use of the '.' character in your window name. Instead of
onClick="MM_openBrWindow('2003_0514_073439AA.JPG','2003_0514_073439AA.JPG','width=820,height=620')"
try
onClick="MM_openBrWindow('2003_0514_073439AA.JPG','2003_0514_073439AA_JPG','width=820,height=620')"