var fDesc=new Array(); fDesc[0] = "Ovulation Calendar Calculator is an easy to use windows program for women looking to improve their health and fitness. The program charts your ovulation cycle on a monthly calendar and an easy to follow graph. You can then use this information predict the calendar days you are most likely to be fertile so that you can achieve or avoid pregnancy."; 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 = ''; } }