var fDesc=new Array();
fDesc[0] = "The ‘GAIES’ is a separate utility that manages the earthmoving equipment in a worksite. Provides optimized solution for the soil movements during the construction stage of a corridor (road, channel, railway etc) project.
The software seeks the more economic combination for a given number of machines (trucks, scraper, bulldozer etc.), using methods of linear programming specialising them for the particular use.
Parameters while finding the most optimum solution are the available machines, the volumes of cuts and fills along the corridor axis and also the available places at which the trucks are able to take or to place soil quantities (Borrow-Deposit Areas).";
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 = '';
}
}