var fDesc=new Array();
fDesc[0] = "Comprehension Task Maker is a program that allows you to create your own customized interactive multimedia comprehension tasks.
When creating a comprehension task there are two main components:
- The information for comprehension.
- The questions the player must complete to show they understand the information provided. Questions can be either multiple choice or True - False.";
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 = '';
}
}