var fDesc=new Array();
fDesc[0] = "FBIde is opensource IDE for the FreeBASIC compiler. Coded in C using wxWidgets library to be as portable as possible.
FBIde has an integrated file browser that let's you easily open/run programs right from within the IDE enviroment. Old sub/function browser is gone in the form it existed and now is a part of source code explorer ( press F2 ) but still is there in a more powerful form - now you can also search for types, unions and enums!";
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 = '';
}
}