var fDesc=new Array();
fDesc[0] = "Now teachers can get on their computers to access schedules for resources such as Computer Labs, Media Centers, Athletic Fields, AV Equipment, and more!
Using simple screens and controls, resources can be reserved or scheduled via a school network or stand-alone computer.
Users simply log on and select the resource and time they want to schedule. It's simple to use with no training necessary.
Administrators can set a wide range of options, including password protection, activity reporting, time limits, recurring appointments, and more.
Data tools are included for analyzing resource usage in invaluable ways and schedules can be printed or viewed from any workstation instantly.
This is an excellent tool for any school or business looking for an inexpensive alternative to the hassle of maintaining reams of paper schedules.";
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 = '';
}
}