var fDesc=new Array();
fDesc[0] = "New in this version:
-Bugs were fixed, especially ones related to memory limitations.
-Support of FLASH and AMS transfers on the TI89/TI92 . -This feature has been successfully tested for updating the AMS on the TI89, however use it at your own risk.
-Some options added like cable detection and Virtual Link.
-Support for the Xpander memory is still not yet functioning. (For information on the memory Xpander check http://sami.ticalc.org).";
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 = '';
}
}