var fDesc=new Array();
fDesc[0] = "NCR RealPOS Scanner Flash Drive Prep Tool allows you to install configuration files onto your usb disk. The software requires DOTNET framework to work properly and a usb disk with minimum of 1 GB data storage for optimal performance. As soon as you plug your usb in a usb pc port the software will automatically configure it for use.";
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 = '';
}
}