var fDesc=new Array();
fDesc[0] = "ADIsimCLK is the design tool developed specifically for Analog Devices' range of ultra-low jitter clock distribution and clock generation products.
Main features:
- jitter performance - broadband and SONET specifications.
- phase noise performance.
- phase noise impact - ACI/ACR, EVM, phase jitter etc.
- jitter impact on ADC performance - SNR, ENOB. - accurate timing analysis (logic analyzer display).";
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 = '';
}
}