var fDesc=new Array(); fDesc[0] = "Convertator is available as both a desktop and a smart phone application. The Units, Constants, and Equations data files are in the same format for both platforms, and can be shared with each other.Convertator, the converting calculator, can be used immediately for simple equations. Just type your equation in the Equation field and press Enter or "=". The answer (or an error code :-( ) will be displayed in the Result field. The Bases, Operators, and Units, are contained in the popup menu lists, but after using these for a short time, it will be easier to type the abbreviations directly into each equation."; 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 = ''; } }