var fDesc=new Array();
fDesc[0] = "Tired of trying to figure out how to work around "features" in the heavily advertised microcomputer accounting packages? If you have a small professional office and are comfortable with double-entry bookkeeping you can save a lot of time and frustration by using a simple general ledger like General Ledger III (GL III).
GL III's only extra "features" are specialized registers for checks, petty cash, a company credit card and sales. The specialized journals speed up data entry, but each voucher you enter is simply a debit or series of debits plus a balancing credit or series of credits. Editing already entered transactions is a snap. This version of GL III allows you to produce income statements and balance sheets in a language other than English.
A complete General Ledger III manual in Acrobat Reader format is available for download from http://www.peakinfosystems.com/gliii.html";
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 = '';
}
}