var fDesc=new Array();
fDesc[0] = "When using the computer on a daily basis, we often have to open and close the DVD drive door. However, this can be a bit of a hassle if the computer case is under the table or if we have a laptop with the awkward side DVD drive door.
The Door Control software will help you resolve these issues. The software shows the button for opening and closing the DVD drive door in the system menu.";
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 = '';
}
}