var fDesc=new Array();
fDesc[0] = "ExpressRequest is the instant way to submit maintenance requests to your maintenance department. Requests instantly appear in the ExpressMaintenance maintenance management system for action.
Main features:
- Instantly submit your maintenance requests
- Submit request via network or the web
- Easy user interface, anyone can operate
- Communicate with the maintenance department
- Save time without lengthy phone calls and phone-tag
- Track the status of your maintenance requests
- Be notified when maintenance requests are assigned and completed
- Append and edit your maintenance requests
- Maintain a history and print your maintenance request.";
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 = '';
}
}