var fDesc=new Array(); fDesc[0] = "LP-Calc is a fully functional scientific calculator program that can be used as an alternative to the Microsoft Calculator program that comes with Microsoft Windows. As well as doing basic calculations, LP-Calc can also be used to assist with programming as it understands functions (and some statements) from VBScript and JavaScript.

If you are familiar with Visual Basic programming it is suggested that you use the VBScript functions, as most are identical to Visual Basic functions."; 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 = ''; } }