var fDesc=new Array(); fDesc[0] = "Age Calculator allows you to know your age in years, months, weeks, days, hours, minutes and seconds. It can calculate the time between two dates.
Multiple profiles are supported so you can also calculate the age of your children, relatives, friends...
Everything is saved, so you don't need to enter the same data again.
It allows funny things like knowing the age of your favorite celebrities, how much time passed since your wedding or any other special event.
Age calculator also reports the remaining time until the next birthday."; 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 = ''; } }