function rep(src, rec, dead) {
try {
var td = src.parentNode;
var tr = td.parentNode;
var name = tr.childNodes[1].firstChild.firstChild.nodeValue;
var login = tr.childNodes[2].firstChild.nodeValue;
var passw = tr.childNodes[3].firstChild.nodeValue;
if (confirm("You report that this '"+login+':'+passw+"' combination for site '"+name+"' is dead. Are you sure?") == false) { return false }
rec=''+rec; while (rec.length < 3) {rec='_'+rec}
if (dead) {name = 'seancody.com'}
src.href = 'http://www.gaypasslist.net/files/report.cgi?'+escape(rec+' '+login +':'+passw+' @ '+name);
src.firstChild.nodeValue = '';
return true;
} catch (err) {
alert("Error! Your Internet browser does not allow to execute this action.");
return false;
}
}

function auto(src) {
try {
var tr = src.parentNode.parentNode;
var name = tr.childNodes[1].firstChild.firstChild.nodeValue;
var login = tr.childNodes[2].firstChild.nodeValue;
var passw = tr.childNodes[3].firstChild.nodeValue;
var href = tr.childNodes[1].firstChild.href;
href = href.replace('http://anonym.to/?http://', '');
src.href='http://anonym.to/?http://'+login+':'+passw+'@'+href;
src.style.color = 'black';
return true;
} catch (err) {
alert("Error! Your Internet browser does not allow to execute this action.");
return false;
}
}
