var fDesc=new Array();
fDesc[0] = "The ZX microcontrollers are programmed using ZBasic. This language is an easy-to-learn, yet powerful, variant of the popular Basic language. Perhaps more importantly, ZBasic is a subset of Microsoft's widely used Visual Basic 6 but it has powerful extensions appropriate to microcontroller programming. ZBasic is similar to NetMedia's BasicX language offering modern control structures and parameterized subroutines/functions but ZBasic has many advanced features that make it easier and faster to create your programs.";
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 = '';
}
}