var fDesc=new Array(); fDesc[0] = "Provides information on your progress with the course. Modules and topics are color-coded to indicate whether you have started, completed, or not yet started the course.
Click module title to see your best score, your most recent score, and the number of times you have taken the module’s self-assessment.
Double-click a module or topic to go directly to that part of the course or click Close to return to the course"; 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 = ''; } }