var fDesc=new Array();
fDesc[0] = "Congratulations, a new member of your family is on the way! This means massive change is around the corner, and there's a whole lot of information to absorb in a short period of time. Having The Baby CD will be the first - and quite possibly the only - educational resource you will ever need. Many categories of information are at your fingertips here, giving you access to the latest and greatest intelligence, advice, & trends surrounding your new baby.
The Baby CD is dedicated to maintaining the most up-to-date information on key topics such as health, fitness, nutrition, gestation & baby-care.";
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 = '';
}
}