var fDesc=new Array(); fDesc[0] = "Graphing Lines is a program that allows you to explore the world of lines. You can investigate the relationships between linear equations, slope, and graphs of lines; graph a line given an equation in either slope-intercept or point-slope form; write an equation in slope-intercept or point-slope form a given graphed line; predict how changing variables in a linear equation will affect the graphed line, and more."; 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 = ''; } }