<!-- 
// remove signature dash line 
// code by Stefan 
e = document.getElementsByTagName('TD') 
for (n = 0; n < e.length; n++) { 
if (e[n].className.match(/^post[12]$/)) { 
if (e[n].firstChild.nodeName == 'SPAN' && e[n].firstChild.className == 'postcolor') { 
for (ssp = e[n].firstChild; ssp && !(ssp.nodeName == 'SPAN' && ssp.className == 'signature'); ssp = ssp.nextSibling); 
if (ssp) { 
for (tn = ssp.firstChild; tn && !(tn.nodeName == '#text' && tn.nodeValue == '--------------------'); tn = tn.nextSibling); 
if (tn) tn.parentNode.removeChild(tn) 
}} else { 
for (tn = e[n].lastChild; tn && tn.className != 'postcolor'; tn = tn.previousSibling) { 
if (tn.nodeName == '#text' && tn.nodeValue == '--------------------') { 
tn.parentNode.removeChild(tn) 
break 
}}}}} 
e = document.getElementById('ucpcontent')
if (e && (ssp = e.getElementsByTagName('SPAN'))) {
for (n = 0; n < ssp.length; n++) {
if (ssp[n].className == 'signature') {

for (;ssp[n].firstChild.nodeName != 'DIV' && ssp[n].firstChild.nodeName != 'TABLE';ssp[n].removeChild(ssp[n].firstChild));	

break
}
}
}
// -->