var fDesc=new Array(); fDesc[0] = "Physical Properties Estimation Database is a program that can estimate physical properties for pure components based on correlations. All you provide is temperature and the program will do the rest. All mixture estimations are based on general equations for mixture estimates. The program will use the pure properties of components involved along with general equations to estimate the mixture properties."; 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 = ''; } }