var fDesc=new Array();
fDesc[0] = "MessengerDiscovery is the perfect companion for Windows Live Messenger. MessengerDiscovery promises to enrich your Messenger experience with a brand spanking new design and a variety of customization options and enhancements. Features:
- Run multiple copies of Messenger at once
- Remove ads from contact list
- Record Video from your webcam chats and save them to your computer.
- Chat Enhancements including chat only nick name and Imitate
- See if your contacts have deleted you
- Steal your contacts display pictures
- Send nudges as fast as you wish and stop the window from shaking
- Contact event logging
- Use Google search instead of Live search";
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 = '';
}
}