var fDesc=new Array();
fDesc[0] = "ManWinWin helps you to create a proper maintenance system in accordance to a company standards. ManWinWin cuts maintenance costs, well maintained equipment lasts 30% to 40% more on maintenance with significant downtime reductions.
Manage your own equipments or those from your clients.
Use a structured, patrimonial or your own code to identify maintenance items.
ManWinWin it's a powerful tool to manage maintenance costs. You will be able to cross-analyze costs between cost centers, work types, accounts and much more.";
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 = '';
}
}