var fDesc=new Array();
fDesc[0] = "The SnapComms platform includes a range of channels that can be combined for every internal communication need – from urgent notifications to awareness and behavioral change. From high-impact alerts and tickers, passive yet powerful screensavers and wallpapers, and interactive surveys and quizzes.
SnapComms offers alternative ways to inform and engage employees, alleviating email-overload and cutting through workplace noise.";
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 = '';
}
}