Hi. I made a test page (code is below). It works fine in Firefox, IE8 and IE8 in IE7 mode. Pop-up pops up and image is visible in both browsers.
code: -------------------- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="ru" xml:lang="ru"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> <script type="text/javascript"> function func() { win=window.open('','','width=200,height=100'); win.document.write("<body style=\"background-color: #EBF2FA;\"><h4>Loading...</h4><img src=\"ajax-loader.gif\" style=\"border:1px solid;\"></body>"); } </script> </head> <body> <p><a href="/" onclick="func();return false;">Test</a></p> </body> </html> -------------------- Alexander Vakhlov ******************************************************************* List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm Help: [email protected] *******************************************************************
