var fDesc=new Array();
fDesc[0] = "QuickPopup is the easy way to communicate with everybody on your office, school and home network. It's cross-platform, ready to run on all flavors of Windows, Mac OS/Mac OS X and Linux. Quite simply, it's the complete solution for all your messaging needs.
Any incoming message can be "popped up" on the screen, indicating its importance. Or select a warning sound and deal with it when it's more convenient";
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 = '';
}
}