var fDesc=new Array(); fDesc[0] = "Out'n About! for Outlook is a program that allows you to track the whereabouts of employees in your organization. The program enables users to be assigned to different departments within the company such as marketing, engineering or accounting so managers can easily check on their division or the team members to coordinate with their group."; 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 = ''; } }