// Disable Signatures in PMs
// created by Ryan Fan
// http://www.ifsz.com , 2005
if(location.href.match(/act=Msg/i)){
x = document.getElementsByTagName('div')
for(y=0;y<x.length;y++){
if(x[y].className == "signature"){
x[y].style.display = "none"
}}}