var fDesc=new Array(); fDesc[0] = "This program is a friendly Preventive Maintenance Software (Computerized Maintenance Management System) that allows you to make more efficient the work of the maintenance staff maintaining the computer database information about the organization's maintenance operations. It helps to calculate costs of maintenance in order to make better decisions. It consists in Equipment Maintenance, Work Order Management, Preventive Maintenance, Inventory Management, and Purchasing.
Description:
- Equipment List. It displays all equipment information. It shows the Preventive Maintenance Tasks scheduled for the pieces of equipment. When you create a work order, this list will be examined to determine which PM Tasks to schedule. You have to generate Work orders by searching the equipment and PM task database. It determines which preventive maintenance are scheduled for the period selected. Once this is completed you can go into the Work Order List and examine the created PM work orders. You can print the PM work orders in the report menu, or print it from the Generate PM’s screen. The last step is to close completed work orders. With the partial order completion you can reschedule any uncompleted tasks. With the Inventory List you can manage your entire inventory. Adding, editing, deleting, or coping from the list. With the Purchase Order List you can see the Purchase information like the order number, vendor code, vendor name, phone number, invoice number, due date, and the date ordered. From the Report menu you can select the desired format to print, preview, or email."; 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 = ''; } }