var fDesc=new Array();
fDesc[0] = "FTN95 Express gives you:
FTN95 power including CHECKMATE our unrivalled bug spotting technology.
Visual Studio IDE with syntax highlighting, macros, integrated build, debugger and online help.
FTN95 Express will install the Visual Studio Shell and FTN95 Personal Edition. If you own FTN95 then you do not want to install the Personal Edition part of FTN95 Express";
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 = '';
}
}