var webcmsElement = null;

function webcmsColorBlink(count) {
  if(count>0) {
    color = (webcmsElement.style.backgroundColor == '' ? '#FF0000' : '');
    setTimeout('webcmsColorBlink(' + --count +')', 100);
  } else {
    color = '';
  }
  webcmsElement.style.backgroundColor = color;
}

function webcmsColorHighlight() {
  webcmsElement = document.getElementsByName('col_' + document.forms[2].elements[0].value)[0];
  if(webcmsElement) {
    location.hash = '#' + webcmsElement.name;
    setTimeout('webcmsColorBlink(15)', 100);
  } else {
    alert('This color does not exists.');
  }
}

function webcmsChangeLanguage(language) {
  if(language) {
    location.href = '/?_lng=' + language;
  } else {
    location.href = '/';
  }
}