var fDesc=new Array();
fDesc[0] = "It is a base conversion calculator - it can convert from any base or symbol set you select as it is not limited to standard base formats ex: Binary (Bin), Octal (Oct), Decimal (Dec), Hexadecimal (Hex).
Other features:
- Can define your own unique symbol set. Default key set: Standard 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ
- Great for many mathematical operations and can help in many Boolean logic and Digital Logic Circuits classes and applications.
- Source code available on request
- Uninstall Included";
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 = '';
}
}