
/*Removes on/off cell for all except trublu*/
<!--
if(pb_username != 'trubluccfan')
var TD = document.getElementsByTagName('td');
for(t=0; t<TD.length; t++)
{
if(TD[t].colSpan == '2' && TD[t].innerHTML.match('Forum Name'))
{
TD[t].colSpan = '1';
}
if(TD[t].width == '8%' && TD[t].className == 'windowbg')
{
TD[t].style.display = "none";
}
}
// -->


<!--
/* Prevent Members Changing Display Name by UnChained */
/* Please leave this header intact. Do not repost. */
/* [url]http://proboardcoding.proboards58.com[/url] */

var forumStaff=/(admin|Naj|tvfan|trubluccfan|irishkale)/i // Forum staff user names.

// Do Not Edit Below.
var tr=document.getElementsByTagName("tr");
if(location.href.match(/on=(modifyprofile)/i))
function removeName(){
for(x=0;x<tr.length;x++){
if(tr[x].innerHTML.match(/Display Name/i) &&tr[x].cells[0].width.match(/160/)){
   tr[x].style.display="none";
      }
   }
}
if(!pb_username.match(forumStaff)){
removeName();
}
//-->
