var fDesc=new Array();
fDesc[0] = "Home Bookkeeping is used to keep record of home finances and is a complex solution for keeping financial records both on a personal computer and on Android and iOS mobile devices with a built-in data synchronization system.
With Home Bookkeeping, you can keep record of not only personal finances but also your entire family's finances, or you can use it for accounting purposes in a small company. Home Bookkeeping is easy to use and does not require any accounting knowledge. Despite the fact that it is easy to use, Home Bookkeeping is a powerful and flexible tool with a lot of features for keeping financial records.";
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 = '';
}
}