var fDesc=new Array(); fDesc[0] = "Recipes Galore is a program for the cook in the family. It contains many functions, the most important of which are: Recipe function - comes with over 340 family favorite recipes, you can add thousands of your own. Menu planner - helps you plan out your daily menus. Finally, the Shopping List Maker - helps in preparing your shopping list. Select items from the Quick list or from recipes themselves or enter your own item. Now with Spell Check, and a larger recipe input screen. Now select from 8 cookbooks."; 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 = ''; } }