var fDesc=new Array();
fDesc[0] = "WinCall Accounting tracks all telephone calls from all of your domestic and international locations, regardless of PBX type (VoIP, analog, Centrex). Through the WinCall Accounting software, your organization:
- helps facilitate internal bill back
- identifies PBX toll fraud
- increases employee productivity
- gathers usage data to help make informed telecom network planning decisions";
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 = '';
}
}