var fDesc=new Array();
fDesc[0] = "HiCALC - Your Trusted Calculator for Desktop PC with 12 modules - Arithmetic, Trigonometry, Matrices, Constants, Finance, Statistics, Biorhythm, Tip, Currency Converter, Unit converter, Base conversion and User’s macro. The Desktop version includes all features as in Pocket PC version .
HiCalc Features:
- Improved matrix functions
- Online update currency exchange rate daily and support 186 currencies
- Smart input which allow to input complicated expression
- Show expression as normal writing mode(really useful for complicated expression)
- Show function's tooltip for fast enter expression
- Skinable and sound support";
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 = '';
}
}