08/03/11 13:04:22 9u1kvWDT
>>199
ミスってたね指摘㌧
if ((typeof document.body.style.maxHeight == "undefined") || (document.compatMode != 'CSS1Compat')) // IE6 / 互換モード
this.message.style.top = scrollTop + 3;
を
var self = this;
if ((typeof document.body.style.maxHeight == "undefined") || (document.compatMode != 'CSS1Compat')) // IE6 / 互換モード
setTimeout(function() { self.message.style.top = scrollTop + 3; }, 0);