var fDesc=new Array(); fDesc[0] = "EpiData Manager is a program that can be used for defining new data structures, modifying existing ones without loss of data and documentation or export of data. It enables you to perform basic statistical analysis and graphing of data, including creating and grouping variables (data management). It also updates data with new fields, changes the fields format(more decimals) and controls data."; 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 = ''; } }