var fDesc=new Array();
fDesc[0] = "At Atkins, we make carb counting easy. Use your Atkins Carb Counter to find the Net Carbs in many of your favorite foods.
The Atkins Carb Counter software is a fun and easy-to-use program for computers.
The foundation of the Carb Counter software is an rich interface with numerous resources for consumers to begin or maintain the "Atkins Nutritional Approach."";
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 = '';
}
}