var fDesc=new Array();
fDesc[0] = "Auto Workshop Manager is a program that enables you to produce professional customer invoices in a matter of minutes and keep track of all customer and supplier related activities with ease. It also includes features such as:
- Full Vehicle Service History
- Appointment Diary
- MOT & Service Reminders
- Supplier Accounts & Purchasing
- Online Data Backups";
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 = '';
}
}