var fDesc=new Array(); fDesc[0] = "Alchemy Helpdesk is a software helping IT groups of the small and medium-size companies handle users technical support requests. If a user experiences problems with the hardware or software on his workplace, he/she creates a Request in the helpdesk software and describes the problem in that request. The IT staff later can assign the request to a certain team member, check the status of a request, etc."; 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 = ''; } }