var fDesc=new Array(); fDesc[0] = "Recipe Keeper Plus is a useful and diverting collection of household information. The program includes more than 340 categorized recipes that you can sort and try, along with a grocery list generator that lets you add ingredients from the recipe or pick from a general shopping list. A new menu planner function rounds out the recipe portion of this program. A conversion table quickly shows common cooking measurements. Other menu choices include a household budget, a set of calculators, a collection of witty sayings, a cost-through-the-years chart and a historical recap so you can check what was happening on the year you were born. There are games like word scramble, tic-tac-toe, concentration, and crossword puzzles. The program is fun and easy to use. Now with Spell Check, larger recipe and budget input screens and more."; 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 = ''; } }