var fDesc=new Array();
fDesc[0] = "It has changed the data base. New data base is not compatible with previous versions. This build include a data base for materials. You can now add your favorite materials.
By using e-weld you can perform calculations of welding economy for most welding methods and welding joints. e-weld includes several modules and tools.
System requirements:
- Min. Pentium 75
- Windows 9x, NT 4.0 (SP5), ME, 2000 (SP1), XP (SP2), Vista, Windows 7
- 16 MB RAM Free
- 10 mb free disc space
- 256 color, min. 800 x 600 resolution.";
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 = '';
}
}