var fDesc=new Array();
fDesc[0] = "The AXIDE assembler is very old and not compatible with Win7. Apply the GNU assembler provided in the EVBU support page.
AxIDE will not BUILD (assemble) HC12 / 9S12 source under Win7 64 bit.
Download the AS12.ZIP file below, extract the AS11.EXE file, and replace the AS12.EXE in the AXIDE installation folder with this version.";
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 = '';
}
}