var fDesc=new Array();
fDesc[0] = "Cleantouch Accounts XP is an easy to use accounting software for service business. The program helps managing finance related requirements of trading companies. Accounts Ledger, Cash / Bank Book, Trial Balances, Profit & Loss & Balance Sheet reports help users to understand position of their business. User have to input their basic daily finance transaction in the program and they can enjoy a lot of automated reports from different criteria.";
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 = '';
}
}