var fDesc=new Array(); fDesc[0] = "Perfect Age calculator is a tool to calculate age by a given date of birth. It tells age in years and also includes the month in the result box so that you will know when your next birthday is. This tool is very useful for official use like office, schools, institutes etc."; 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 = ''; } }