var fDesc=new Array();
fDesc[0] = "Agilent Technologies has developed an application enabling you to read and use these pricelist databases: Price-Surfer.
This Microsoft Windows®-based application also provides additional functionality, such as searching, filtering, exporting and printing. Price-Surfer can be easily configured and customized to suit your specific requirements. Price-Surfer also supports integration with other Windows-based applications.";
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 = '';
}
}