var fDesc=new Array();
fDesc[0] = "Scientific Notation Converter is a free math tool to convert numeric value between scientific notation and normal decimal notation. Scientific Notation, also called as "Standard Form" or "Exponential Form", is a numeric value written in the form of a * 10 ^ n (1 <= a < 10); it can easily represent very big or very small number.
This program approximate range is ±5.0 × 10 ^ −324 to ±1.7 × 10 ^ 308; the precision is 15-16 digits.";
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 = '';
}
}