var fDesc=new Array();
fDesc[0] = "E2R Weighing records module is successfully employed with keeping weighing records on Radwag scales and weighing systems connected into a network and configured in a computer data base. It is particularly useful in processes, where weighed foods are not combined directly to each other by data, and they are not involved in a weighing process with determined start and stop point (like transactions or production orders). E2R weighing records module is directed to customers in various industrial branches, like: meat, food-processing, chemical, fish, sugar and engineering.
Features:
- Collection of data;
- Weighing process monitoring;
- Labeling;
- Counting pieces;
- Report from performed weighing processes;
- Summing of weighing processes;
- Random filtering of collected data;
- Adding up of filtered data;
- Simplified reporting - standard reports with printing";
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 = '';
}
}