var fDesc=new Array(); fDesc[0] = "yoshinoCALC is a free scientific calculator software.
Conventional View is one of the two aspects of yoshinoCALC. The software emulates a conventional scientific calculator.
History View is the other aspect of yoshinoCALC. You can evaluate an expression made of following elements. The last result is copied to Clipboard as text. You can recall expressions in the list by "↑" and "↓" keys."; 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 = ''; } }