var fDesc=new Array();
fDesc[0] = "Discover the new Clearblue Cycle Calendar widget application. Download it to your computer and start using it right away - whether you want to get pregnant or simply want to understand your cycles.
The interactive calendar will help you track your cycles and, if you’re trying to get pregnant, your fertile days.
It will estimate when your next period is due and, if you’re using Clearblue Ovulation Tests, will alert you when it’s time to start testing.
The calendar also provides you with a complete history of your tracked cycles, which you can print out and take to your doctor for example.";
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 = '';
}
}