var datei;
 
function woeffnen(a) {	
	
	datei=window.open(
		"",
		"Burgergemeinde", // Name des neuen Fensters
		+"toolbar=yes" // Toolbar
		+",location=no" // Adress-Leiste
		+",directories=no" // Zusatzleisten
		+",status=no" // Statusleiste
		+",menubar=no" // Menü
		+",scrollbars=yes" // Scrollbars
		+",resizable=yes" // Fenstergrösse veränderbar?
		+",width=450" // Fensterbreite in Pixeln
		+",height=600" // Fensterhöhe in Pixeln
	);
		
	if (a==1){
		datei.location.href='http://www.burgergemeinde.ch/lageplan/einrichtungen.html';	
	};
	if (a == 2){
		datei.location.href="http://www.burgergemeinde.ch/lageplan/museum.html";	
	};
	if (a == 3){
		datei.location.href="http://www.burgergemeinde.ch/lageplan/burgerspital.html";	
	};	
	if (a == 4){
		datei.location.href="http://www.burgergemeinde.ch/lageplan/forstzentrum.html";	
	};	
	if (a == 5){
		datei.location.href="http://www.burgergemeinde.ch/lageplan/burgerheim.html";	
	};	
	if (a == 6){
		datei.location.href="http://www.burgergemeinde.ch/lageplan/jugendwohnheim.html";	
	};
}

