var fDesc=new Array(); fDesc[0] = "The Ultimate Date Calculator is a heavy-duty date calculator for business, government & professional use. Calculate the number of days weeks and years between two dates and store the results. You are given the flexibility of controlling whether the first date and/or the final date should be included in the calculation. Perform Julian date conversions. Calculate the number of days, weeks and years between a series of events and store the results. Dates are automatically sorted into chronological order. You can optionally enter a description for each event, and print a final report."; 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 = ''; } }