var fDesc=new Array();
fDesc[0] = "Program highlights:
Sizing:
-Sizing of safety valves according to leading worldwide codes and standarts such as: API 526, ASME VIII, ISO 4126-1, AD-2000 A2
- Calculation of two-phase flow in accordance with API 520 Appendix D (Ω - method) and fire case in accordance with API 521
-Evaluation of inlet pressure drop, built-up back pressure in pipework, reaction force as well as noise levels
Reports:
- Selectable reports e.g. project report, single page report
- Customizable design of report layouts (company logo, adress etc. )
- Range of data export formats, e.g. XLS, RTF, PDF etc.
- Integrated material part lists and sectional drawings for all LESER safety valves";
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 = '';
}
}