var fDesc=new Array();
fDesc[0] = "CALI Author is a lesson authoring software that you can use to edit lessons or to create completely new ones. It was designed for creating computer-assisted educational tutorials. The lessons created using CALI Author can be run locally on a computer or over the World Wide Web.
Features:
- Exporting lessons to the Internet.
- Simultaneous editing and viewing of lessons.
- Explorer interface: uses an interface like the Windows Explorer.
- Summary Report: has a Report view which includes the text of the question and all its possible feedback pages, scoring and branches.";
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 = '';
}
}