var fDesc=new Array();
fDesc[0] = "BoxView software is a digital signal processor target software debugging tool.
BoxView software will utilize some of the hardware facilities in our emulator to obtain benchmark-timing results from software code execution by the target.
For debugging purposes, our BoxView product provides a visual representation of the software execution that is taking place.
To produce this visual representation there are means of gathering what is to be presented. This is a process of discovery and presentation.";
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 = '';
}
}