var fDesc=new Array();
fDesc[0] = "Silverfrost FTN95 provides an IDE to test and learn Fortran code.
Main features:
- Full implimentation of Fortran 95 for Windows
- Silverfrost CHECKMATE technology
- Plato an Integrated Development Environment (IDE)
- Integration with Visual Studio
- Full source level debugging
- Full Documentation
- 32- and 64-bit compiler";
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 = '';
}
}