var fDesc=new Array();
fDesc[0] = "Flowcode for ARM is a graphical programming language for the ARM series of microcontrollers. It allows those with little or no programming experience to create complex electronic systems in minutes.
Features:
- Improved simulation, making system design easier and faster.
- Allows users to create their own components for more realistic system design and simulation.
- Allows users to verify and record a system under test.
- Extended design, which includes electromechanical components and systems.";
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 = '';
}
}