var fDesc=new Array();
fDesc[0] = "BVRDE is an Integrated Development Environment (IDE) for C and C++.
It is designed to make remote/cross-platform development easy. Its features include project management, application wizards, an integrated interactive debugger, and a powerful source editor with source browsing and syntax highlighting.
The goal of this tool is to allow a developer to compile and debug applications entirely on a remote computer, while editing and issuing compile and debug commands through a local interface. Compile your UNIX & LINUX applications from your Windows machine.
BVRDE supports a variety of network protocols to allow connection with various remote systems. This includes FTP and secure & encrypted protocols such as SSH and SFTP.
It requires Windows 2000 or better installed, but all the development tools (compiler, linker, debugger) should be located on the remote system.";
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 = '';
}
}