var fDesc=new Array();
fDesc[0] = "Once the Drive Letter Recognition Software is installed, the removable Disk icons and their description change.
For example, if the computer has an A:, C:, and D: drive before connecting the reader/writer, the drive letters will be assigned as follows when the reader/writer is connected.
- Depending on the available media slot, only the corresponding memory card icon is displayed.
- The use of this software is intended only for this reader/writer. Other reader/writers may not work with this software.
- Uninstall any similar software before installation to ensure that the software functions properly.";
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 = '';
}
}