var fDesc=new Array(); fDesc[0] = "KPNCalc is a polish notation calculator. The numbers should be added to the stack before the operation is performed. The calculator used double precision, and the stack is only limited by your computers memory.

Main features:

- The comma and parentheses are used to enter complex numbers.

- Switching the base will change all of the numbers in the stack to the selected base.

- User operations can be written in python and assigned buttons using the xml gui."; 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 = ''; } }