var fDesc=new Array(); fDesc[0] = "This software is designed to open, filter and print data download files from the Advance Welding ACT series electrofusion units. It will recognise csv format files with the .xls extension and protected format files with the .pfd extension.
When the file has been opened, the data can be filtered by weld date or by error code. This data can then the graphed or printed. It can also be resaved to another name or location. The underlying data can not be altered in this software.
An unprotected file can be saved as .pfd and a protected file can be saved as .xls . The operator must take responsibility for keeping the original file, downloaded from the welding unit, safe and secure."; 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 = ''; } }