var fDesc=new Array();
fDesc[0] = "AXEpad is a cross-platform development tool for all PICAXE chips, supporting all three of the Windows, Mac and Linux operating systems. AXEpad is a notepad type application for developing PICAXE BASIC language programs. It supports all PICAXE chips and has a full set of code development features such as:
- syntax check and download
- source code colour syntax highlighting
- debug and serial terminal windows
- various code generation wizards (pwmout, tune etc.)";
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 = '';
}
}