var fDesc=new Array(); fDesc[0] = "Shop 'Til You Drop maintains a list of all the items which you buy regularly, allowing you to compile and print off a Shopping List which lists items in the order in which you walk around the supermarket.

No more searching up and down the shopping list to find the next product. You simply start at the top of the list and work down as you move from aisle to aisle. If you sometimes visit more than one shop or buy different sizes or brands of a product, Shop 'Til You Drop can optimize your shopping list to save you money."; 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 = ''; } }