var fDesc=new Array(); fDesc[0] = "SCORM 2004 4th Edition Sample Run-Time Environment provides an example implementation of the concepts described in SCORM. Specifically, it provides an example of the SCORM Run-Time Environment (Application Programming Interface (API) and Data Model) and SCORM Sequencing and Navigation as they might be applied in a learning management system (LMS) environment. Robust exception and error handling are not included in this sample code, nor were performance optimizations considered."; 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 = ''; } }