var fDesc=new Array();
fDesc[0] = "Office Titan is a sales accounting software that was developed for business that require quotations/sales orders, marketing and billing. Writing quotations are easy with the quotation tool. It is easy to reference a quote at a later date, because the quote stays with the client file. Create invoices by using the inventory tool or create a custom invoice as required. Statements are available for 30-60-90 day. Easy navigation from account receivable screen to make payments on client files.";
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 = '';
}
}