var fDesc=new Array(); fDesc[0] = "Shopping Companion is an easy-to-use program for managing a shopping database and printing shopping lists.
The database driven system allows you to manage multiple shopping trips (files). Changes are automatically saved preventing data loss if computer shuts down or locks up. Also the database has fields for Store, Aisle, Product, Brand, Category, Size, Unit, Price, Per Unit Price, Discount Amount, Quantity, and Total."; 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 = ''; } }