var fDesc=new Array();
fDesc[0] = "Detailed Description
The Intel® Integrator Assistant software application is a Microsoft* Windows* based system configuration tool, that is designed for professional system integrators who need to customize Intel Desktop Boards using an Intel processor and chipset. The Intel Integrator Assistant easily customizes a subset of BIOS settings (for booting, device management, power, and security). It also aids in setting asset management values, updating system BIOS, adding a custom logo for branding, and providing a unique BIOS splash screen image. Customization work is done using a workspace and configuration file that can be transported to other similar target computers.
For additional information, refer to the Intel® Integrator Assistant home page.";
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 = '';
}
}