var fDesc=new Array();
fDesc[0] = "This program allows students to manipulate parts of a sentence into a standard Kellog-Reed sentence diagram. There are four levels: Simple sentences, compound/complex sentences, infinitival/that-clause sentences, and miscellaneous sentences. The student uses a mouse to drag sentence elements into their places in the diagrams. The program comes with sentences for each level, or the teacher can create a file with sentences that are specific to and suitable for his/her class and level, and manipulate the program so that those sentences become the ones the students see. Related sentence parts are color-coded (the subject and its elements are red, the verb and adverbials are blue, etc.) and attractively presented. A special drawing tool allows students and teachers to draw, color, and print original sentences, and to create files of a number of sentences. The program has an additional tool for teachers to correct or edit a student file of diagrams. The teacher or the student can print, copy to the clipboard, or save a diagram at any point in the program.
Paper-and-pencil versions of sentence diagramming may once have been thought of as a tedious chore, but this program could actually make the exploration of sentence structure more entertaining and, hopefully, just as instructive.";
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 = '';
}
}