var fDesc=new Array();
fDesc[0] = "FoodChoices is nutrient analysis software specifically designed for personal home use and educational use.
Main features:
- Analyze your food diaries, meal plans and recipes
- Compare your food diary or meal plan to the nutrient reference values for Australia and New Zealand
- Compare your food diary or meal plan to your own nutrition goals
- See the contribution of each food to the nutritional value of a food diary, meal plan or recipe";
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 = '';
}
}