var fDesc=new Array();
fDesc[0] = "Track'Em is a low-cost easy-to-use barcode solution for inventory and fixed asset tracking application. Data collected with portable barcode scanner is automatically added to Track'Em database with one click of a button. 4 modules (Inventory Tracking, Asset Tracking, Check In / Check Out, Basic Barcode Label Printing) included for one low price.
It includes a password protected menu system, dozens of reports and data entry screens. Track'Em can be run on a stand-alone PC, or over a network on an unlimited number of workstations. Track'Em Standard comes with a portable barcode scanner that is pre-programmed to easily collect information regarding assets and products / inventory";
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 = '';
}
}