var fDesc=new Array();
fDesc[0] = "LIOGO is a Logo compiler for .NET.
Logo is an interactive programming language mainly used for learning. First, Logo is really good for drawing because in Logo you draw using a "turtle" that you must teach what you want to draw.
Logo is also a powerful dynamic programming language: you can build a fully new program in your Logo program using lists and variables. Finally, Logo has an active community of teachers, artists and developer.";
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 = '';
}
}