var fDesc=new Array();
fDesc[0] = "Atmel SAM-BA software provides an open set of tools for programming the Atmel SAM3, SAM7 and SAM9 ARM-based microcontrollers.
SAM-BA 2.11 for Windows (XP, Vista, Seven editions) - Install file for the SAM-BA package. SAM-BA v2.11 User's Guide is included in the package. SAM-BA 2.11 for Linux- SAM-BA Package for Linux. SAM4S16 Patch for SAM-BA® 2.11
This patch adds support in SAM-BA 2.11 for SAM4S16 microcontrollers.";
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 = '';
}
}