var fDesc=new Array(); fDesc[0] = "Advanced Grapher is a program which helps you calculate complex functions and it creates graphs on a coordinate plane automatically. It is highly useful for students and for scientific work. It supports a multilingual interface; many languages are included with the installation package and others can be easily downloaded. It supports all Windows operating systems and requires a very small amount of your disk space.
It plots high-quality 2D graphs for all kinds of equations, functions and tables. It supports many operations like arithmetic operations, logical operations and relational operations. Table values can be directly inserted in the graph or can be easily imported from a text file. Many constants, which are very common in use like PI, are directly available in this software. You can also create many variables for a calculation.
It allows plotting up to 100 graphs on one coordinate plane which helps analyzing and comparing many graphs. All the graphs can be seen at the graph toolbar and you can easily hide, delete, and copy a graph from the graph list. Graph properties like its design, equation or table can be set easily. You can also duplicate and copy one graph property to another and abort the calculation of a graph at runtime."; 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 = ''; } }