var fDesc=new Array(); fDesc[0] = "MatrixPro is a tool for demonstrating algorithms. It has a library of predefined data structures and algorithms that make it easy for users to visualize and animate their own algorithms implemented in Java.

MatrixPro is a tool for instructors to create algorithm animations used in teaching. MatrixPro offers functionality to manipulate the automatically generated algorithm animations in order to produce the kinds of animations the lecturer wants. The animations can be prepared prior to the lecture or on-the-fly during the lecture."; 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 = ''; } }