var fDesc=new Array(); fDesc[0] = "Project Recovery Toolbox lets you recover data from Microsoft Project (MPP) files. Its step-by-step wizard interface is quite easy to use. After the program analyzes the structure of the corrupted file, it will show the located tasks in a table. The table will contain: task names, task durations, start and end dates, number of previous tasks, and names of resources assigned to the tasks."; 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 = ''; } }