var fDesc=new Array();
fDesc[0] = "Full-featured EDA suite with state-of-the-art, Mentor Graphics synthesis and simulation tools integrated into a user-friendly design environment.
The software supports VHDL and Verilog design flows for the ATF15xx family of complex programmable logic devices. This suite also includes a JTAG in-system programming utility and filter technologies to enable logic doubling in ATF15xx CPLDs.
Optional add-on tools support schematic and CUPL design flows. A two-year license for Mentor Tool Precision Synthesis software is now available.";
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 = '';
}
}