var fDesc=new Array(); fDesc[0] = "TOTAL Task Wizard is a wizard dialogue designed to assist in the choice of a new task when you create a new task. The task wizard is launched from a number of places, including the gold and silver wands in the toolbar of the question bank.
When a module is first loaded into the TOTAL Task Wizard a special dialogue is launched which allows you to go directly to the task wizard to create a new question."; 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 = ''; } }