Hey admins, why don't u solve the problem with the close button, because when change the text to something different than "close", everyone get a bug, it's simple to fix, see:
Change the line in file mod_moopopup.php:
var p = new mooSimpleBox({ width:'.$width.', height:'.$height.', btnTitle:'.$buttonTitle.',closeBtn:'myBtn', btnTitle: 'close',boxClass:'myBox', id:'myID', fadeSpeed:'.$fadeSpeed.', opacity:'0.9', addContentID:'mooPopUpDiv', boxTitle:''.$boxTitle.'', isDrag:''.$isDrag.''});
For:
var p = new mooSimpleBox({ width:'.$width.', height:'.$height.', btnTitle:close,closeBtn:'myBtn', btnTitle: ''.$buttonTitle.'',boxClass:'myBox', id:'myID', fadeSpeed:'.$fadeSpeed.', opacity:'0.9', addContentID:'mooPopUpDiv', boxTitle:''.$boxTitle.'', isDrag:''.$isDrag.''});
It's just because the btnTitle:'.$buttonTitle.', must be btnTitle:close and btnTitle: 'close' must be btnTitle: ''.$buttonTitle.''.
I hope that helps.
Andrew, www.animespace.com.br
PS: Sorry for the bad english.