var fDesc=new Array(); fDesc[0] = "The Student Message Center is the client app for the URcast Network. It runs on a student's device and interacts with the URcast infrastructure, which you must have in your school to use this app. URcast is a software product that runs on servers installed in a school and on student and teacher devices such as Chromebooks, PCs, iPads and Android devices."; 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 = ''; } }