var fDesc=new Array();
fDesc[0] = "The SKY-click Agent Console is the plug-in all "Agents" or users must have installed on their PC's in order to run SKY-click. The SKY-click Agent Console includes the interface which agents will use to receive, manage and log incoming calls. It is used hand-in-hand with the SKY-click administration console which is managed by an administrator.
Download it, install it, and receive call-back requests!";
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 = '';
}
}