var fDesc=new Array();
fDesc[0] = "madly calculator aero is a new software utility designed as a math calculator. It assures basic mathematical functions but also an entire set of trigonometric and complex functions such as : sin, cos, tan, logarithm, root and more.
This software tool has the ability to change the language, change the size and position of buttons on a form, change shape, change display, change the color of the buttons, display an image on the buttons and display, and much more.";
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 = '';
}
}