var fDesc=new Array();
fDesc[0] = "WProd-Control and WProd-Monitoring have the same functionality (they are the same software).
The only difference is the limitation of WProd-Monitoring to observe only up to 3 users simultaneously.
There can be more than 3 users (computers) connected to the WProd-Monitoring server, but the server allows only 3 users to send data.
You can select any 3 users from the user’s table for collecting data.
For example: every day you can select 3 other users and in that way monitor more than 3 users.
Analyzes activity and efficiency of employees working on the computer; it also calculates their productivity.
The work of employees on computers seems, to their superiors, similar to a "black box".
The result of their work can be assessed, but the productivity can only be partially estimated.
In other words - how much time an employee, working on a computer, spends using the computer for his or her private purposes remains unknown to their superiors.";
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 = '';
}
}