var fDesc=new Array();
fDesc[0] = "Zulip combines the immediacy of Slack with an email threading model.
With Zulip, you can catch up on important conversations while ignoring irrelevant ones. Zulip has everything you want in group chat. Apps for the iPhone, Android, and desktop. More than 80 integrations (GitHub, Jira, Stripe, Zendesk, etc.). Keyboard shortcuts. Emoji reactions. Translated into a dozen languages.
Tired of important discussions being disrupted by automated messages, lunch plans, and random links? With Zulip, each conversation has its own thread. Looking for a conversation from two months ago? Zulip's fast and powerful search experience will delight you.";
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 = '';
}
}