var breite=570;
var breite1=800;
var hoehe=650;
var hoehe1=860;
var xpos=(xsize-breite)/2;
var ypos=(ysize-hoehe)/2;

function spieler_popup(idnummer){
var bild=window.open("spieler_portrait.htm?id="+idnummer,"","scrollbars=no,status=no,toolbar=no,location=no,directories=no,resizable=no,menubar=no,width="+breite+",height="+hoehe+",screenX="+xpos+",screenY="+ypos+",top="+ypos+",left="+xpos);
}

function spielerAjugend_popup(idnummer){
var 
bild=window.open("spielerAjugend_portrait.htm?id="+idnummer,"","scrollbars=yes,status=no,toolbar=no,location=no,directories=no,resizable=yes,menubar=no,width="+breite1+",height="+hoehe1+",screenX="+xpos+",screenY="+ypos+",top="+ypos+",left="+xpos);
}

function bilder_popup(id){
var bild=window.open("popup_bilder.htm?id="+id,"","scrollbars=no,status=no,toolbar=no,location=no,directories=no,resizable=no,menubar=no,width="+breite+",height="+hoehe+",screenX="+xpos+",screenY="+ypos+",top="+ypos+",left="+xpos);
}

// FlexFenster
function Flexfenster(URL, name, newWidth, newHeight, scroll, resize, menue) {
        scrollen= 'no';
        resizen = 'yes';
        menubar = 'no';
        tools   = 'no';
	newtop     = 100;
	newleft    = 100;
        if (scroll) { scrollen = scroll; }
        if (resize) { resizen = resize;  }
        if (menue)      { menubar = menue;   }
        win=open(URL,name,'status=no,resizable=' + resizen + ',menubar=' + menubar + ',toolbar=' + tools + ',resize=yes,scrollbars=' + scrollen + ',height='
 + newHeight + ',width=' + newWidth + ',top=' + newtop + ',left=' + newleft);
        win.focus();
}

