var fDesc=new Array();
fDesc[0] = "Keeping track of the birthdays of all your family and friends is a difficult job. Let Birthdays do all the work for you.
With Birthdays you only need to enter your friends and family's birthdays once and when that special day approaches, you will be notified. You can choose how many days advance notice you want for upcoming birthdays as well as missed birthdays.";
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 = '';
}
}