var fDesc=new Array();
fDesc[0] = "No matter what type of business you have Service Master Software allows your employees to create, print and track work orders in an easy yet organized way.
You are able to quickly generate work orders, print copies and automatically save to the powerful database. This software application transforms your current antiquated paper and filing system into a highly functional computerized system. Accurate reports ensure work is completed so your customers stay happy and customer retention is achieved.";
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 = '';
}
}