var fDesc=new Array();
fDesc[0] = "The Evrite Software Package (ESP) has been designed as a VAT & Non VAT Accounting Software / Bookkeeping Software Package. It will produce Financial Transaction Reports that your Accountant will need to prepare a set of accounts.
The reports produced by ESP will save your accountant time preparing your accounts.
Other Reports produced: Profitability Graph, Purchase Invoice Report, Purchase Payment Report, Sales Invoice Report, Sales Receipt Report, Wages & Drawings, Bank Account Report and Journals Report.";
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 = '';
}
}