var fDesc=new Array();
fDesc[0] = "BASCOM is the Windows BASIC COMPILER for the 8051 family. In addition it has full support for arrays and the single floating point type.
Key Benefits:
-Structured BASIC with labels.
-Structured programming with IF-THEN-ELSE-END IF, DO-LOOP, WHILE-WEND, SELECT- CASE.
-Fast machine code instead of interpreted code.
-Variables and labels can be as long as 32 characters.
-Bit, Byte, Integer, Word, Long, Single and String variables.
-Compiled programs work with any 8051 uP such as AT89C1051, AT89C2051, 8031, 8032, 8051, 8052, 80552, 80535 and 80537 m Processors.
-Statements are highly compatible with Microsoft’s VB/QB.
-Special commands for LCD-displays , I2C chips and 1WIRE chips.";
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 = '';
}
}