zalohaSwRow = '';
function swRow(obj,value) {
         if (value == 'on') {
             zalohaSwRow = obj.style.backgroundColor;
             obj.style.backgroundColor = '#AD5E00';
         }
         if (value == 'off') {
             obj.style.backgroundColor = zalohaSwRow;
         }
}
