var fDesc=new Array();
fDesc[0] = "Come together - Stay connected and organized. Accomplish more together across work, school, and life with Microsoft Teams.
Chat - Share your opinion, and your personality. Send gifs, stickers, and emojis in a group chat or in one-to-one messages.
Meet - Instantly go from group chat to video conference with the touch of a button. Teams of 2 or 10,000 can meet in one place, no matter how many places they’re in.
Call - Make and receive calls with internal and external groups using Microsoft Teams Calling, Phone System, Calling Plan, or Direct Routing.
Collaborate - Easily find, share, and edit files in real time using familiar apps like Word, PowerPoint, and Excel in Teams.";
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 = '';
}
}