var fDesc=new Array();
fDesc[0] = "WorkMan Agent for Sugar is a software developed by Larsson Consulting.
WorkMan Agent is the application to use to gain high productiviy as a desktop user. It works standalone and doesn't require any specific server features.
You must have a TAPI-enabled PBX and Windows 2000/XP/Vista/7 to be able to use this.";
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 = '';
}
}