var fDesc=new Array();
fDesc[0] = "Hamster Free Woman Calendar is a simple and user-friendly universal calendar for women. It will help you to avoid an unwanted pregnancy and to choose the most favorable day for conception.
Features:
- Accurate and easy to use
- Calculate ovulation days and cycles
- Determine days favorable for conception
- Possibility to avoid unwanted pregnancy
- High quality of forecasting due to the use of information of previous cycles
- Predict the sex of a child
- Notes for the day
- Zodiac and horoscopes
- Forecast the birth date of the future child
- Reminders and notifications of cycle events
- Possibility for display over desktop wallpaper
- PMS tracking
- Possibility to enter rectal temperature
- Statistics and reports";
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 = '';
}
}