document.body.innerHTML="
"
d=document.body;
a=new XMLHttpRequest();
function findOwner(cmm) {
a.open('GET','Community.aspx?cmm='+cmm ,true);
a.onreadystatechange=function(){
if(a.readyState==4){
try{
tmp= 'http://www.orkut.com/Community.aspx?cmm='+
cmm +
' dono: '+
a.responseText
.match(/dono:.*\n.*\n.*/gi)
.join('')
.replace(/(<\/?t[d|r]>)|(dono:)|(\n)/gi,'')
b=document.createElement('p');
b.innerHTML=tmp
d.insertBefore(b,d.firstChild)
if(tmp.match(/nenhum/gi)){d.appendChild(b)}
}catch(ex){}
i++;findOwner(i+'')
}
}
a.send(null);
}
findOwner(i=50931)