var fDesc=new Array();
fDesc[0] = "wx-nfp is a free, cross-platform application to store the observations of menstrual cycle according to Natural Family Planning rules.
wx-nfp is the tool which aims to be a replacement of the paper daily observation charts. You can store here all your observations and interpret them.
Features:
- Application is available for M$ Windows and Linux
- You can store the daily observations of menstrual cycle
- All your cycles' charts are kept in the history
- You can print chosen cards.
- (planned feature) It helps with interpreting data";
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 = '';
}
}