var fDesc=new Array(); fDesc[0] = "Ovulation Calculator is a reliable tool that determines the date(s) when women are most and least likely to get pregnant, based on their menstruation cycles. Ovulation Calculator uses the method developed by doctors and tested in hundreds of fertility clinics all over the world. The precision rate for this application is 95%, meaning 95 out of 100 healthy women get pregnant if they have sex on the date(s) calculated and if they or their partners do not have any medical conditions that interferes with fertility. The "success rate" for no pregnancy risk days is much higher."; 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 = ''; } }