var fDesc=new Array();
fDesc[0] = "Structural Codes Assistant is a simple software for better understanding of equivalent seismic loadings.
Main Features:
- Automated calculation of seismic loadings.
- Calculation of lateral forces, story moments, diaphragm forces and story shears.
- Vertical distribution of seismic base shear.
- Automated import of story data from CSI ETABS.
- Detailed calculation reports for all the calculations.
- Reports can be printed, exported or customized.
- Graphical view of load distribution.
- Many settings for graphical view.
- Tabular outputs.
- Metric and Imperial units.
- Customizable user settings.";
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 = '';
}
}