var fDesc=new Array();
fDesc[0] = "The SimUText System™ lets you create custom collections of interactive chapters and/or virtual labs for your classes.
Interactive chapters and virtual labs use simulated experiments to promote critical thinking about challenging topics.
"Test-Your-Understanding" and auto-graded end-of-section questions provide critical feedback.
An Instructor Portal lets you monitor student progress and facilitates grading";
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 = '';
}
}