var fDesc=new Array();
fDesc[0] = "CookDiary is your personal Cooking Program.
This recipe software manages all your favorite recipes, helps you to plan your meals and even aids your cooking. It unites all advantages of a Cooking Program and a Cookbook.
Create menus, plan meals with the integrated calendar and print your grocery lists for whole weeks.
In contrast to other recipe programs CookDiary provides even more amenities of a real cookbook. It is modeled after the accessibility and simplicity of a cookbook and doesn’t overwhelm the chef with spreadsheets. Cooking with CookDiary is fun.";
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 = '';
}
}