var fDesc=new Array();
fDesc[0] = "Earth embankments are widely used for roads, railways, river training works, canal embankments, dams, etc.
AEC Slope 2009 is used for analyzing stability of slopes for the above structures and reporting safety factors.
The failure of these structures is likely to result in loss of life and damages to property. AEC Slope 2009 is used for analyzing stability of slopes for the above structures and reporting safety factors.";
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 = '';
}
}