var fDesc=new Array();
fDesc[0] = "Start Live Chat is application for visitors tracking and live chat, help and support. With user-friendly tabbed interface and context help, the live chat is easy to use. The live help software includes a list of website visitors, thus operator can track a visitor and view his details: browser, IP address, country and etc. With proactive chat live chat operator can invite a visitor to chat. The live help has ability to create departments for chat operators, than visitors can requests chat with desired department. It is a web-based chat, thus you can access to operator console anywhere.";
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 = '';
}
}