var fDesc=new Array();
fDesc[0] = "Chronicall Desktop is a program that includes a pre-packaged installation of Java and allows you to open the Chronicall interface as a stand-alone application. It provides features such as:
- Agent chat and file transfer
- Chronicall Heartbeat, which alerts you whenever an error interrupts Chronicall
- Instant 911 notifications
- Automatic launch of Realtime canvases in full screen at startup
- Agent Dashboards, which includes Realtime widgets, pop-up call notifications.";
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 = '';
}
}