var fDesc=new Array(); fDesc[0] = "NovoFormula is an application designed for correlation/estimation of soil properties. The program provides all formula along with any comments associated. You can save the equation as an image file or print the correlated values. The report builder summarizes all available correlations for selected soil parameter in a PDF file."; 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 = ''; } }