var fDesc=new Array();
fDesc[0] = "The AT&T Connect Participant is the essential interface to host and fully participate in an AT&T Connect web conference.
In a live conference, this application connects participants by incorporating functionality to load and annotate materials to a common whiteboard; share local applications; tour a web address; poll the audience; record the conference; and interact face-to-face using integrated video conferencing.";
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 = '';
}
}