var fDesc=new Array();
fDesc[0] = "NutriBase is a nutrition software for professionals. The program is designed to give nutrition professionals, educational institutions, restaurants, corporations, hospitals, and doctors the tools to take control of their nutrition and fitness-related requirements.
Features:
- Synchronize your data (food logs, recipes, etc.) across all your computers.
- Supports collaborative workgroups with colleagues, chefs, or researchers around the world.
- Click a button to determine your client's NBFTE (next best food to eat).
- Create publication quality U.S. Nutrition Facts Labels for your recipes at no additional charge.
- Scale your recipes to serve any number of people.
- Track meals and diabetic factors to help clients learn to control their blood glucose levels.";
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 = '';
}
}