Hi, I had the same error like you in firebug. So I search and find the reason: It means that you are open an frame in a frame with the same url (loader_frame.html).
So I write a RewriteRule that redirect all request that start with "loader_frame" and ends with ".html" to "loader_frame.html" and changed in gb_scripts.js .......... this.src_loader="/loader_frame.html"; ..... to ...... this.src_loader="/loader_frame"+(Math.random()*100)+".html"; ..... And now I can use gb_showimage in an gb_window. I hope it could help you. Eddi --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "GreyBox" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/greybox?hl=en -~----------~----~----~----~------~----~------~--~---

