var fDesc=new Array();
fDesc[0] = "SoilStructure Retaining Wall software is an efficient and powerful program with the following unique capabilities:
- Taking into account the response of bearing pressure when axial dead & live loads are present
- Computation of retaining wall footing settlement due to distortion & consolidation settlement
- Checking for global stability of passive soils if the materials are cohesive
- Design of shear stem key @ the top of footing – bottom of stem interface
- Calculation to check of whether Active or At rest or in between earth pressures apply to the stem
- Calculating passive earth resistance when passive soils are descending
- Calculating at rest earth pressure when the backfill soils are overconsolidated and inclined
- Option to include all 3 common surcharges – point load, line load and strip load
- Creating P-M interaction diagram for each stem wall section";
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 = '';
}
}