var fDesc=new Array();
fDesc[0] = "Leo is:
-An outline-oriented browser and project manager that organizes
programs, web sites, URL's, pictures, movies or any other kind of data.
-You can organize your data in as many ways as you like within a single outline.
-A programmer's editor that fully integrates outline structure with programming.
-Fully scriptable using Python. Leo's core is 100% pure Python.
Leo is an outlining-oriented project manager and browser. With Leo you can organize programs, web sites, URL's, pictures or any other kind of data. Leo is fully scriptable in Python. Leo is 100% pure Python. It requires the Qt gui toolkit.";
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 = '';
}
}