function doRanglisteInit(bereich) {
   $('#rl_navigation').html('<center><img src="http://static.fechten.org/icon/ajax.gif" alt="Anwendung l&auml;dt!" /></center>');
   $('#rl_body').html('<p>W&auml;hlen Sie bitte eine Rangliste aus!');
   $.ajax({
     url: '/ajax/call.php',
     data: 'call=rangliste/navigation/'+bereich,
     async: true,
     success: function(data) {
       $('#rl_navigation').html(data);
     }
   });
}

function doRanglisteUpdate(bereich) {
   if (bereich == 'dfb' || bereich == 'senioren') {
     urlbereich = 'dfb'
   } else {
     urlbereich = 'lfv'
   }
   $('#rl_body').html('');
   $.ajax({
     url: '/ajax/rangliste.php',
     data: 'call=' + urlbereich + '/' + $('#rl_rangliste').val() + '/' + $('#rl_altersklasse').val() + '/' + $('#rl_waffe').val() + '/' + $('#rl_saison').val() + '/include/' + $('#rl_art').val() + '.html', 
     success: function(data) {
       $('#rl_body').html(data);
     }
   });
}

var xsize = screen.width-90
var ysize = screen.height-90
var breite=xsize
var hoehe=ysize
function showbios(url,wwidth,wheight){
	remote = window.open("","showbios","scrollbars=yes,resizable=yes,width="+wwidth+",height="+screen.height+",top=0,left=0");
	remote.location.href = url;
	if(remote.opener == null) remote.opener = window;
}

function showerg(url){
	remote = window.open("","ergbanz","scrollbars=yes,resizable=yes,width="+breite+",height="+hoehe+",top=0,left=0");
	remote.location.href = url;
	if(remote.opener == null) remote.opener = window;
}

function showprt(url){
      remote = window.open("","rlanzeige","scrollbars=yes,resizable=yes,width=950,height="+screen.height+",top=0,left=0");
      remote.location.href = url;
      if(remote.opener == null) remote.opener = window;
}

