var fDesc=new Array();
fDesc[0] = "Small Business Software, or just SBS, has been created with the end-user in mind. Its features cover everything that you need to conduct your business with ease: purchasing, sales, inventory control with serial/lot numbers and expiration dates, supplier and customer product returns, point of sale, straight commissions, sales quotes and RFQs, barcoded inventory labels, barcode scanner support, and data import";
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 = '';
}
}