
<!--
table = document.getElementsByTagName('table');
for(i = 0; i < table.length; i ++) {
with(table[i]) {
if(width == '92%') {
width = '100%';
}}}
//-->

// Remove "Subject | Started By | Replies" Row by CD
var aTD = document.getElementsByTagName("TD");

if(location.href.match(/board=/i) && !location.href.match(/action=/i)){
for(a=4;a<aTD.length;a++){
if(aTD[a].firstChild && aTD[a].firstChild.firstChild && aTD[a].firstChild.firstChild.firstChild && aTD[a].firstChild.firstChild.firstChild.innerHTML && aTD[a].firstChild.firstChild.firstChild.innerHTML.match(/Subject/)){
aTD[a].parentNode.style.display = "none";
break;
}
}
}



/* Remove on/off icons from sub-boards
created by CrAzY_J
Open Source*/

var gCell = document.body.getElementsByTagName('td');
var pattern = /^Sub-Boards$/;
if( this.location.href.match(/board=\w+(&\w+=\d)?$/) )
{
   for( var c = 0 ; c < gCell.length ; c ++ )
   {
      if( gCell[c].className == 'titlebg' && gCell[c].colSpan == '2' && pattern.test( gCell[c].getElementsByTagName('b')[0].firstChild.data ) )
         gCell[c].colSpan = 1;
      if( gCell[c].width == '8%' && gCell[c].className == 'windowbg' )
         gCell[c].style.display = 'none';
   }
}

<!--
// Remove Borders [cellspacing]

pbTables = document.getElementsByTagName('table');

for (a=0;a<pbTables.length;a++)
if (pbTables[a].cellSpacing == "1")
pbTables[a].cellSpacing = "0";
// -->

