function show_children(prefix, id) {
  jQuery('#'+prefix+'_shower'+id).hide();
  jQuery('#'+prefix+id).show();
  jQuery('#'+prefix+'_hider'+id).show();
}

function hide_children(prefix, id) {
  jQuery('#'+prefix+'_hider'+id).hide();
  jQuery('#'+prefix+id).hide();
  jQuery('#'+prefix+'_shower'+id).show();
}

function toggle_all(self) {
  jQuery('.country').attr('checked', false);
  jQuery('.country').attr('disabled', self.checked);
  jQuery('.region').attr('checked', false);
  jQuery('.region').attr('disabled', self.checked);
}

function toggle_country(self, n) {
  jQuery('.country'+n).attr('checked', false);
  jQuery('.country'+n).attr('disabled', self.checked);
}

function toggle(id) {
    document.getElementById(id).style.display=(document.getElementById(id).style.display=='none')?'':'none';
}
