var fDesc=new Array(); fDesc[0] = "Time Logger is a program designed to log employees time in and time out on different jobs/tasks. After providing the ID code the program gives an employee choice of tasks he is assigned to. Every time coming to work or changing the task, every employee logins to this program providing his/her personal ID code."; 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 = ''; } }