/* kontakty - zastupci */
function getRegionIndex(x) {
  x = x.split('_');
  return x[1];
}

function showZastupce(x) {
  x = getRegionIndex(x.id);
  getRef('zregion_' + x).style.background = '#ffcccc';
  getRef('zastupce_' + x).style.display = 'block';
}

function hideZastupce(x) {
  x = getRegionIndex(x.id);
  getRef('zregion_' + x).style.background = '#ffffff';
  getRef('zastupce_' + x).style.display = 'none';
}

function hideAllZastupce() {
  var obj = null;
  for (var i = 1; i <= 5; i++) {
    obj = getRef('zastupce_' + i);
    if (obj) hideZastupce(obj);
  }
}
/* /kontakty - zastupci */
