var fDesc=new Array();
fDesc[0] = "Fruit Nutrients Comparer is a software tool aimed to build nutrition reports for a huge variety of fruits. It also builds comparison reports for the fruits of your choice.
Using this tool is as easy as picking some fruits from the list and clicking a button, this is all you need to get nutrition facts for over one hundred fruits.
Each nutrition report is split into sections for each type of nutrient: carbohydrates, minerals, vitamins… and each fruit report contains the data for 30 different nutrients.
Reports are easy to understand, each nutrient section contains a table with the raw data and a graph which makes it easier to compare.";
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 = '';
}
}