var fDesc=new Array();
fDesc[0] = "CommissionAlert is a Windows application that alerts affiliates when they receive new commissions. It includes two separate applications:
- CommissionAlert for Affiliates: This application runs as a Windows taskbar icon. Affiliates can right-click this icon and log directly into their accounts.
- CommissionAlert for Administrators: Administrators install this Windows application and get desktop notifications when new affiliates join your affiliate program and when new commission arrive in your affiliate program.";
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 = '';
}
}