var fDesc=new Array();
fDesc[0] = "LoopUp for Outlook is a free add-on that sits in your Outlook toolbar, and will help you in the following ways:
- Create pre-formatted invites in just 2 clicks
- Easily add international dial-in numbers to your invites
- Click ‘View’ to see who’s on your call, mute background noise, share your screen.";
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 = '';
}
}