var fDesc=new Array(); fDesc[0] = "Complex Grapher is a graphing calculator to create a graph of complex function. 3D function graphs and 2D color maps can be created with this grapher. You can input complex functions in the form of w=f(z) (where z=x+yi) directly before creacting graphs. Graphs can be copied and saved in the format of bitmap. Complex Grapher is a graphing calculator to create a graph of complex function. 3D function graphs and 2D color maps can be created with this grapher. You can input complex functions in the form of w=f(z) (where z=x+yi) directly before creacting graphs. Graphs can be copied and saved in the format of bitmap."; 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 = ''; } }