var fDesc=new Array();
fDesc[0] = "CrossCore Embedded Studio is a professional integrated development environment (IDE) for the Analog Devices Blackfin and SHARC processor families. It provides seamless, intuitive C/C++ and assembly language editing, code generation, and debugging.
CrossCore Embedded Studio also offers Blackfin and SHARC developers highly integrated add-in support for drivers, services, and algorithmic software modules. These include driver support for on chip and off chip peripherals, stacks for Ethernet and USB, a popular real time operating system and file system, and more";
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 = '';
}
}