var fDesc=new Array();
fDesc[0] = "Did you realise that most weekly shopping lists are pretty much the same; the only difference being that we add a few extras or dont need to get some things some weeks. This program takes full advantage of that.
Simply make a shopping list by dragging items from the 'supermarket shelves' into your current weekly list - edit the quantities you need and print it.
Next week is even easier - open the last list and simply remove the things you dont want and add anything new.";
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 = '';
}
}