var fDesc=new Array();
fDesc[0] = "Request Tracker is a Help Desk database system that allows you to store and retrieve all pertinent information about customer requests. Track who requested what and when they requested it, what was done to address the request, who handled the request and how much time it took them. If you charge customers for the requests you handle, Request Tracker will allow you to calculate charges, print bills and track payments.
Request Tracker is easy to use -- one screen records all information about a single request. Extensive search capabilities allow you to use the program's database to identify similar problems or requests that were handled in the past, making the solutions instantly available.";
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 = '';
}
}