var fDesc=new Array();
fDesc[0] = "With the Microsoft® Office Live Meeting Add-In for PowerPoint, you can create Live Meeting presentations directly in the Microsoft PowerPoint® presentation graphics program. With the Microsoft® Office Live Meeting Add-In for PowerPoint, you can create Live Meeting presentations directly in the Microsoft PowerPoint® presentation graphics program. By using the Live Meeting Add-in for PowerPoint, you can:
Insert Live Meeting resource slides (poll, whiteboard, Web, text, and application sharing) into a PowerPoint presentation before joining the meeting.
Export a PowerPoint presentation file (.ppt) to Live Meeting 2005 format (.lmp).";
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 = '';
}
}