I believe the issue is with this code
PHP Code:
var formatMe = ShoutRequest.handler.responseText
formatMe = replaceDates(formatMe);
Shouts.innerHTML = '<table cellpadding="1" cellspacing="0" border="0" width="100%" align="left">' + formatMe + '</table>'
It should be
PHP Code:
var formatMe = ShoutRequest.handler.responseText
formatMe = replaceDates(formatMe);
Shouts.innerHTML = '<table cellpadding="1" cellspacing="0" border="0" width="95%" align="left">' + formatMe + '</table>'
Might want to make this change to the actuall mod itself, this causes a hscroll bar and its quite annoying.