var fDesc=new Array(); fDesc[0] = "The Project Work Manager application was designed to be a small tool that will tell how many much time you spend for a specific project.

Project Work Manager(PWM) is a multiuser, time monitoring system that will monitor and keep time spend statistics for a project. It can be used by a single developer or a developing team

Every project has it’s customer and developer so statistics will be very specific regarding the project, developer, customer. It’s only limitation is that a developer can not concurrently monitor more than one project.

To start monitoring another project if already you are monitoring one stop monitoring the old project and click to monitor the new one."; 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 = ''; } }