var fDesc=new Array();
fDesc[0] = "The Device Provider is easy to install, self configuring and will work out of the box.
Main features:
-Additional Tag Operations
-Tag Passwords
-Lock Tags
-Kill Tags
-Microsoft Certified Compliant Version
-Auto and Triggered Discovery
-Support for DHCP Enabled readers
-Continuous and Polled Modes
-GetTagsCommand
-compatible with both Continuous and Polled Modes
-now supports 'View Tags' from the device menu
-Duplicate Tag Elimination
-Single Configuration Application";
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 = '';
}
}