var fDesc=new Array(); fDesc[0] = "UnfriendApp is an application that notifies you whenever someone unfriends you on Facebook. If one of your friends deletes their Facebook profile, UnfriendApp will notify you about these changes as well.
UnfriendApp checks your friends list every 15 minutes to see who has unfriended you, and then automatically alerts you about any changes."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }