function doBiographieList() {
  $.ajax({
      url: '/ajax/call.php', 
      data: 'call=biographie&data=liste/' + $('#auswahl').val() + '-' + $('#waffe').val(),
      success: function(data) {
        $('#biographie').html(data);
      }
  });
}
function doBiographieSuche() {
  $.ajax({
      url: '/ajax/call.php', 
      data: 'call=biographie&data=suche/' + $('#suche').val(),
      success: function(data) {
        $('#biographie').html(data);
      }
  });
}

function doBiographieShow(art, fechter_id) {
  var ergebnis = window.open('', 'biographie', "width=735,height=400,left=50,top=150,scrollbars=yes");
  ergebnis.location.href = 'http://service.fechten.org/popup/biographie/' + art + '-' + fechter_id;
}

function doBiographieAJAXShow(art, fechter_id) {
  var biosurl = "/ajax/biographie.php?art=" + art + "&fechter_id=" + fechter_id
  bios = new Window({className: "alphacube", width: 735, height: 400, zIndex: 200, resizable: false, title: "Biographie", showEffect:Effect.BlindDown, hideEffect: Effect.SwitchOff, draggable: true, wiredDrag: true});
  bios.setAjaxContent(biosurl, {method: 'get'}, true, false);

}

function doBiographieAJAXUpdate(art, fechter_id) {
  var biosurl = "/ajax/biographie.php?art=" + art + "&fechter_id=" + fechter_id
  bios.destroy();
  doBiographieAJAXShow(art, fechter_id);
}

