var fDesc=new Array();
fDesc[0] = "Visual Vessel Design is a graphical based MS Windows program for calculation and design of pressure vessels, shell and tube heat exchangers and boilers to different design codes as listed below:
- EN13445-European Standard for "Unfired Pressure Vessels.
- ASME VIII Div.1 for "Rules for Construction of Pressure Vessels.
- PD5500-British Standard for "Unfired Fusion Welded Pressure Vessels.
- TBK2-Norwegian Standard "General Rules for Pressure Vessels.
- TKN-Swedish Standard "Tryckkärlsnormer.
The program is in use by vessel fabricators, petroleum refiners, oil companies, engineering companies varies process companies and a number of independent consultants.";
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 = '';
}
}