// Remove Group In Posts
// Created By Zero Tolerance
// ©2003-2004 Game Zone | Evolution, All Rights Reserved
function ConstructPostCell(DataCell){
DataCell.innerHTML = DataCell.innerHTML.replace(/Group: (.+?)<br>/i,'')
}

function BuildTopicView(){
Table = document.getElementsByTagName('table')
	for(t=0;t<Table.length;t++){
	check = Table[t].width == "100%" && Table[t].border == "0" && Table[t].rows[1]
	check2 = Table[t].cellSpacing == "1" && Table[t].cellPadding == "3"
  if(check && check2){
  	if(Table[t].rows[1].cells[0]){
    if(Table[t].rows[1].cells[0].className.match(/(post(1|2))/i)){
    ConstructPostCell(Table[t].rows[1].cells[0])
    }
  	}
  }
	}
}
if(location.href.match(/showtopic=(\d+)/i)){
BuildTopicView()
}
