var fDesc=new Array();
fDesc[0] = "CARL Master covers the entire range functional requirements for maintenance management, from describing your assets, managing work orders, controlling stock and purchases to tracking in-house and external resources. CARL Master uses a client/server architecture, with Windows client workstations and an Oracle database server. If you are looking for a Java / HTML application, click here to discover our CARL Source range.
CARL Master provides:
- A structured, graphical view of your facilities, with various classifications (geographic, functional, technological) enriched with dependency links (power supply network, circuits, fluids, energy, safety, etc.).
- The certainty that work requests or preventive maintenance operations will never be overlooked.
- The possibility of processing faults or incidents in detail by setting up and analysing machine histories.
- Time savings during repetitive operations through a library of work templates.
- More satisfied customers (production, users, etc.) through better responsiveness.
- Improved reliability of sensitive equipment.";
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 = '';
}
}