function removeMarkAll() {
// No need for editing
var read = document.getElementsByTagName("td");
for(r=0;r<read.length;r++) {
with(read[r]) {
if(colSpan == "5" && firstChild.innerHTML.match(/action=markall/i))
{read[r].parentNode.style.display = "none";}
}
}
}

if(location.href.match(/com\/?((index\.cgi)?\??(action=(home|logout))?(#.+)?)?$/))
{removeMarkAll();}

if( this.location.href.match(/\.com(\/(index\.cgi(\?|#\w+)?)?)?$/))
{
var T = document.body.getElementsByTagName("td");
for(t=0;t<T.length;t++){
if(T[t].className == "titlebg" &&
T[t].innerHTML.match(/Info\sCenter/))
T[t].parentNode.style.display = "none";
}}

var InfoIcon=document.getElementsByTagName("TD")
for(t=0;t<InfoIcon.length;t++){
if(InfoIcon[t].className.match("windowbg") && InfoIcon[t].width=="20" && InfoIcon[t].vAlign=="middle"){
InfoIcon[t].style.display="none"
}}

// Size of the gap between categories
var gapSize = 25;

var tabHTML = '<td id="rr" colspan="5"></table></td></tr></table><div style="height:' + gapSize + '"></div><table width="100%" cellspacing="0" cellpadding="0" class="bordercolor"><tr><td><table cellpadding="4" cellspacing="1" width="100%"><tr>';

if(location.href.match(/\.com(\/|.+cgi(\?|#.+|\?\w+=home)?)?$/i)){
    var tBod = document.getElementsByTagName("tbody");
    for(tb = 0; tb < tBod.length; tb ++){
       for(r = 2; r < tBod.item(tb).rows.length; r ++){
          var tBodObj = tBod.item(tb).rows.item(r).cells.item(0);
          if(tBodObj.className == "catbg" && tBodObj.colSpan == "5" && tBodObj.align != "right"){
             var c = tabHTML + tBod.item(tb).firstChild.innerHTML + "</tr>";
             var p = tBodObj.parentNode.innerHTML;
             var tBodPar = tBod.item(tb).parentNode.parentNode.parentNode.parentNode.parentNode;
             tBodPar.parentNode.innerHTML = tBodPar.parentNode.innerHTML.replace(p, c + p);
          }
          if(tBod.item(tb).rows.item(r).firstChild.id == "rr"){
             tBod.item(tb).rows.item(r).style.display = "none";
          }
       }
    }
}