window.defaultStatus = '';
function openAdmin(){
	breite = 610;
	hoehe = 400;
	url = "admin.php";
	leftpos = screen.width/2-(breite/2);
	toppos = screen.height/2-(hoehe/2);
	bla = window.open(url,'neuesFenster','fullscreen=no,status=no,scrollbars=yes,width='+breite+',height='+hoehe+',left='+leftpos+',top='+toppos);
}

function openPopup(url, width, height) {
	if(screen.width >= width && screen.height >= height)
		return !window.open(url,'','fullscreen=no,status=no,scrollbars=yes,width='+width+',height='+height+',left='+(screen.width/2-(width/2))+',top='+(screen.height/2-(height/2)));
	return true;
}

function openTerms(){
	breite = 610;
	hoehe = 400;
	url = "terms.php";
	leftpos = screen.width/2-(breite/2);
	toppos = screen.height/2-(hoehe/2);
	bla = window.open(url,'neuesFenster','fullscreen=no,status=no,scrollbars=yes,width='+breite+',height='+hoehe+',left='+leftpos+',top='+toppos);
}

function openSelector(){
	breite = 500;
	hoehe = 416;
	url = "selector.php";
	leftpos = screen.width/2-(breite/2);
	toppos = screen.height/2-(hoehe/2);
	bla = window.open(url,'neuesFenster','fullscreen=no,status=no,scrollbars=no,width='+breite+',height='+hoehe+',left='+leftpos+',top='+toppos);
}

function openPoll(){
	breite = 616;
	hoehe = 600;
	url = "poll.php";
	leftpos = screen.width/2-(breite/2);
	toppos = screen.height/2-(hoehe/2);
	bla = window.open(url,'neuesFenster','fullscreen=no,status=no,scrollbars=yes,width='+breite+',height='+hoehe+',left='+leftpos+',top='+toppos);
}

function openAnmeldung(string){
	breite = 616;
	hoehe = 450;
	url = "anmeldung.php?event="+string;
	leftpos = screen.width/2-(breite/2);
	toppos = screen.height/2-(hoehe/2);
	bla = window.open(url,'neuesFenster','fullscreen=no,status=no,scrollbars=yes,width='+breite+',height='+hoehe+',left='+leftpos+',top='+toppos);
}

function openLexikon(id){
  breite = 517; 
  hoehe = 450; 
	url = "lexikon.php?id="+id;
	leftpos = screen.width/2-(breite/2);
	toppos = screen.height/2-(hoehe/2);
	bla = window.open(url,'neuesFenster','fullscreen=no,status=no,scrollbars=yes,width='+breite+',height='+hoehe+',left='+leftpos+',top='+toppos);
  //window.open(url,'lala','')
}

function SeiteEmpfehlen(url) {
     breite = 497; 
     hoehe = 480; 
     url = 'empfehlen.php?' + url; 
 
 
     leftpos = screen.width/2-(breite/2); 
     toppos = screen.height/2-(hoehe/2); 
     glossar = window.open(url,'Empfehlen','fullscreen=no,status=no,scrollbars=no,width='+breite+',height='+hoehe+',left='+leftpos+',top='+toppos); 
}
function openPopup(url) 
{
	breite = 500;
	hoehe = 450;
	leftpos = screen.width/2-(breite/2);
	toppos = screen.height/2-(hoehe/2);
	return window.open(url,'popup','fullscreen=no,status=no,scrollbars=no,width='+breite+',height='+hoehe+',left='+leftpos+',top='+toppos);
}