var fDesc=new Array();
fDesc[0] = "Astrobe uses the programming language Oberon-07. You can now develop efficient high- and low-level 32-bit native code ARM embedded software without having to use assembler or C. In fact the Astrobe compiler, linker and runtime system are themselves written in Oberon.
Astrobe identifies many common programming errors at compile / link time before you even run your program; most others are automatically trapped at runtime. The system identifies the point of failure by module name and source code line number so valuable time is not wasted chasing spurious side-effects.";
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 = '';
}
}