var fDesc=new Array();
fDesc[0] = "Deskun is a solution for multichannel customer support and task management. It is an extension for Google Chrome and Yandex.Browser, integrated with Gmail and G Suite.
The service allows to combine different customer communication channels within a single interface:
- Live chat on your website
- Messengers: Facebook, WhatsApp, Twitter, Telegram, Viber, Skype, and Vk.com
- E-mail
Deskun allows to process messages from clients in Gmail interface. One can use message templates for quick reply, assign requests to responsible agents, collaborate with employees behind the scenes using notes, and much more within a given customer chat.
With Deskun, any message, inquiry or task won’t get lost and will always be in view.
Deskun is a Google Chrome extension. That makes it a compact solution with no additional software required.
Users get a 21 day free trial period with no functionality limitations. The Deskun pricing plan allows paying only for the required amount of agents (users) and channels. One support agent and one channel are available for free forever.";
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 = '';
}
}