var fDesc=new Array();
fDesc[0] = "Ro3n is a simple Qt application designed to solve mathematical equations - linear as well as quadratic.
Use the Ro3n menu for choosing the kind of mathematical problem that you would like to solve. This version supports linear and quadratic equations, nonetheless other mathematical problems might be supported in future versions.
When you get the results of any kind of mathematical problem, you might as well want to print the whole problem and its solution or just save it for later use.
This can be done very easily - click Export TXT or HTML, depending on the output type you prefer, give it a name and click Save.";
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 = '';
}
}