var fDesc=new Array();
fDesc[0] = "Figuring out what to eat to dinner each night is not an easy thing to do 365 days a year. That's why I created Dinner Wizard. This free program will assist you by suggesting a weekly menu based on your preferences. It's very easy to use and the result is a nice looking menu that you can use for inspiration (or follow strictly if you want to).
Features
Create new menus with a single click
Dishes are randomly chosen
Setup the food to suit your taste
Use for inspiration and ideas
Print your personal menu
Freeware!";
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 = '';
}
}