 function styleAbbr() {
 ÊÊvar oldBodyText, newBodyText, reg
 ÊÊif (isIE) {
 ÊÊÊÊoldBodyText = document.body.innerHTML;
 ÊÊÊÊreg = /<ABBR([^>]*)>([^<]*)<\/ABBR>/g;
 ÊÊÊÊnewBodyText = oldBodyText.replace(reg, '<ABBR $1><SPAN class=\"abbr\" $1>$2</SPAN></ABBR>');
 ÊÊÊÊdocument.body.innerHTML = newBodyText;
 ÊÊ}
 }

 window.onload = function(){
 ÊÊstyleAbbr()
 };

 isIE = (document.all) ? true:false;