var fDesc=new Array();
fDesc[0] = "Contains a library of 310 recipes from 16 countries--from Abalone to Zabione. Convenient search feature locates specific recipes, or lists all those recipes with a particular ingredient. You can add your own countries and recipes and there is even a feature to enter the names of friends and business associates and a list of their favorite recipes. Print recipes to any Windows-compatible printer.";
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 = '';
}
}