var fDesc=new Array();
fDesc[0] = "AC Source GUI enables you to access the powerful capabilities of the 6800 series products.
The GUI allows you to easily perform key tests such as inrush characterization with the built-in data acquisition capability of Agilent's ac source products. Graphical and numeric test results can be saved for future analysis or reporting.";
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 = '';
}
}