var fDesc=new Array();
fDesc[0] = "Graphing Software without the Learning Curve
Whether graphing equations or making a coordinate grid, HandyGraph helps you create attractive graphical images quickly.
Making Math Teaching Easier
Put graphs into math worksheets, tests, web pages, and presentations.
Make custom blank graphs for your students to complete.
How does HandyGraph work?
To graph functions or inequalities, simply type the equation, much like a graphing calculator.
To plot points click on the graph or enter coordinates in a point table.
Use intuitive screens to customize your graph's features (size, line styles, etc).
Why HandyGraph?
This graphing program was designed for teaching math. We understand the work involved with teaching, and we created HandyGraph to make your job a bit easier. You can make accurate high-quality graph images with HandyGraph's simple and friendly user interface. You get great graphs - with little effort.";
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 = '';
}
}