/* FILE ARCHIVED ON 6:23:46 Jan 30, 2009 AND RETRIEVED FROM THE AN OPENWAYBACK INSTANCE ON 7:43:10 May 24, 2024. JAVASCRIPT APPENDED BY OPENWAYBACK, COPYRIGHT INTERNET ARCHIVE. ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. SECTION 108(a)(3)). */ var notify = function(title, format) { if (! notify.msg_ct) { notify.msg_ct = Ext.DomHelper.insertFirst(document.body, {id:'notify-div'}, true); } notify.msg_ct.alignTo(document, 't-t'); notify.msg_ct.alignTo(document, 't-t'); // repeat: bugfix for IE var s = String.format.apply(String, Array.prototype.slice.call(arguments, 1)); var m = Ext.DomHelper.append(notify.msg_ct, {html: notify.create_box(title, s)}, true); m.slideIn('t').pause(2).ghost("t", {remove: true}); }; notify.create_box = function(t, s) { return ['
', '
', '

', t, '

', s, '
', '
', '
'].join(''); };