var fDesc=new Array();
fDesc[0] = "GNUstep is a cross-platform, object-oriented framework for desktop application development.
GNUstep features two great graphical applications which help you manage and create new projects, design and edit graphical user interfaces, & compile and debug your programs. The core libraries contain classes for developing a complete graphical application for almost any purpose.
Based on the OpenStep specification and now compatible with Apple's Cocoa framework, GNUstep enables developers to rapidly build sophisticated software by employing a large library of reusable software components.";
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 = '';
}
}