var fDesc=new Array();
fDesc[0] = "LotusLive Meetings is a full-featured Web meetings service, designed for businesses of all sizes. Quickly and confidently share information, give presentations and demonstrate software in a security-rich environment.
Practical and affordable for today's businesses, LotusLive Meetings helps enhance team productivity, shorten sales cycles and contain travel costs.
Meetings is an integrated on-line Web conferencing service to share ideas, present material to colleagues and customers from anywhere.
Think of it as your own personal conference room - always ready when you need it.";
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 = '';
}
}