var fDesc=new Array();
fDesc[0] = "Modern Calculator is a powerful instrument for making various types of calculations. The program can be used as a standard calculator for making a simple and scientific calculations. All calculations are automatically saved to a file and displayed in the log window. Except a standard calculator the program includes some useful instruments that will allow you to make specific types of calculations. The program also has a completely customizable skin-supported interface and multiple interface languages.";
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 = '';
}
}