var fDesc=new Array();
fDesc[0] = "Truck scale operations currently using a manual ticketing system can automate their process with OnTrak data management software. Print tickets or reports as well as store information to a central database. OnTrak is adaptable to a wide variety of industries and compatible with many popular operating systems.
Supports Windows XP SP3 (32-bit), Vista SP 2 (x86 or x64), and Windows 7 (x86 or x64) Systems
SQL Server 2005 Express Client/Server Database
Comprehensive Report Filters
User & Administrator Filters
Backup and Restore via included SQL Server Management Studio Express
Unlimited Charge / Discount per Product
Ship or Receive Mode for Each Transaction
Exclusive Database for: Customer, Hauler, Truck, Product, Job, Price/Discount, Tax, Transaction
Ethernet TCP/IP or RS-232 Connectivity
Supports VIRTUi/VIRTUi2 or Rice Lake Weight Indicators";
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 = '';
}
}