var fDesc=new Array();
fDesc[0] = "Snapware is a CTI and Presence Management solution.
Main functions:
- Call initiation by selecting from a call list, entering on the PC's key pad or a graphical key pad, or by using drag and drop from other OLE-enabled applications
- Answering incoming calls
- Consultation call
- Navigator for own extension with the following functions: dial, consultation call, alternate call, transfer call, conference, Close Snapware, favorite list, journal, ODT search, status display (including forwarding, PM profile, ACD states) of the own extension.";
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 = '';
}
}