var fDesc=new Array();
fDesc[0] = "Ximple Accounting system, provided to you by BTSSOFT, aims to give you an experience to convert your conventional, manual business tasks into a simple, valuable computerized system.
Ximple Accounting system understands your business needs by helping you consolidate all of your business transactions into one package efficiently and effectively. Its user-friendly interface provides an easy and simple Purchasing, Sales, Accounting and Financial transaction management, while its functional and effective reporting delivers competitive advantage for your business.
As a product of years of research and development, Ximple Accounting system is sure to offer you an experience of trouble-free, straight-forward practicality.";
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 = '';
}
}