var fDesc=new Array();
fDesc[0] = "Nuvoton CIR Device Driver installs the infrared driver for Intel Desktop Boards with Nuvoton Consumer Infrared (CIR). This application is easy-to-use with a user-friendly interface and its compatible with the products listed below:
- Intel Desktop Board DH57DD
- Intel Desktop Board DP55KG
- Intel Desktop Board DP55SB
- Intel Desktop Board DP55WG";
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 = '';
}
}