var fDesc=new Array(); fDesc[0] = "This plug-in allows you to display Plot or "Chart" objects in your publication. If you are looking for a simple way to show simple "Charts" in your publications, npPlot is for you. Each Plot offers you three graphic styles: lines, "soft" lines and "B-Splines", and bars. You can control several Plot objects at the same time. It has multi-line, legend, Axis and automatic title, and supports multiple series, and much more. It can also produce monochromatic versions of the graphics. It allows you to control the Plot objects with their own mouse events: pulsed, released and moving."; 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 = ''; } }