var fDesc=new Array();
fDesc[0] = "Utilising the latest technology and best ideas Job Tracker was designed by business people for business people.
Main features:
- manage your customer data and documents, create and manage estimates, jobs, purchase orders and invoices.
- Communicate easily with your mobile workforce, make sure you get paid and make sure you send out invoices.
- Enable your customers to track job progress on-line, this stops them calling you.
- Improve job tracking by reducing your paperwork and using the inbuilt document scanning feature.
- Send emails and create any kind of document from within Job Tracker.
- Access all your data from all PCs in your office.
- Share the diary system across your entire company.";
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 = '';
}
}