var fDesc=new Array();
fDesc[0] = "Cycle Calculator is a menstrual cycle calendar also known as fertility calendar. The software indicates days with increased probability of getting pregnant, makes predictions of upcoming dates and keeps records of previous cycles.
Features:
-Easy-to-use calendar predicts ovulation date and dates with increased probability of pregnancy.
-Vacation planner - scroll to view future menstrual cycle dates.
-Due Date calculator – calculates the due date for the child conceived during current cycle.
-All cycle dates input into the calendar are available for review and editing.
-The calendar graphs your cycles duration over the last 12 months.
-The calendar calculates cycle duration statistics including average and standard deviation.
-Text Comments can also be typed in (currently not available on Smartphone).
-The calendar automatically saves all you cycle dates into a text file for review on Pocket PC or desktop computer.
-You can save all data into a CSV file (comma separated values text file) for backup, archival, and editing.
-You can load data from the CSV file into the cycle calculator software.
-The Cycle Calculator is practical and user-friendly. Just tell the Cycle Calculator the day of your last menstrual bleeding and the average number of days in menstrual cycle.";
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 = '';
}
}