Could we help you? Please click the banners. We are young and desperately need the money
The following information was originally found here
The Joomla modal window script syntax in the file /media/system/js/modal.js produces the following error when benig displayed with Firefox:
This is a bug in the file modal.js. It was filed already here. You can do the following to get a workaround for this:
Search for this line in /media/system/js/modal.js (Line 220):
else if (!(content !== this.content && this.content.contains(content)))
and replace it with this:
else {this.content.adopt(content);}
Search for this:
this.content.set("html",a):a!==this.content&&this.content.contains(a)||this.content.adopt(a))
and replace it with this:
this.content.set("html",a):this.content.adopt(a))