// This and all other JavaScript code on this page 2003 Klinkmann Automation Latvia. All rights reserved. //
function toggleVis2(itemx){
cells = document.getElementsByName(itemx);
if (cells[0].style.display ==  'none'){ cells[0].style.display =  '';}else { cells[0].style.display =  'none';}
}
function toggleVis2off(itemx){
cells = document.getElementsByName(itemx);
cells[0].style.display =  'none';
}
// This and all other JavaScript code on this page 2003 Klinkmann Automation Latvia. All rights reserved. //
