var fDesc=new Array(); fDesc[0] = "EpiGram is a program for producing diagrams for inclusion in articles and reports. It is called EpiGram because it was written to create epidemiological contact tracing and social network diagrams for inclusion in outbreak and other epidemiological reports. It is, however, a general purpose diagram creation tool.

EpiGram is designed to be as simple as possible to use. This means that it contains the bare minimum of functions required to create simple diagrams. To see the sort of diagrams that can be produced take a look at the sample files installed in the EpiGram application directory."; 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 = ''; } }