var fDesc=new Array();
fDesc[0] = "GlobalTax is the ideal tool for a centralized management of all your sites.
You will be able to analyze your entire company telephone traffic thanks to a great deal of requests and by planning status that will automatically be sent by Email to the persons you wish.
Functionalities:
- SINGLE and MULTI-SITES Corporate customers
- From 50 up to 10000 extensions management
- User-friendliness
- Automated reports sending by Em@il
- Traffic analysis, all basic options included
- Compatible with any PBX";
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 = '';
}
}