var fDesc=new Array();
fDesc[0] = "Extron EDID Manager® is a software tool that can be a useful aid in troubleshooting potential EDID compatibility issues between a display and the source connected to it. The software allows you to read the display's EDID and generate a report, providing detailed information about the display device.
Features
- Free EDID management software utility
- View supported video and audio capabilities of system devices
- Troubleshooting aid for determining EDID compatibility issues
- Reads device EDID and generates a detailed report
- Supports secondary, 128-byte extension blocks such as CEA-861
- Compatible with VGA, DVI, HDMI, and DisplayPort equipped devices";
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 = '';
}
}