function galleriebild(bildnummer) {
	var aktuellbild;
	
	for (i = 1; i <=4; ++i) {
		aktuellbild = "kleinbild0"+ i;
		if (i == bildnummer) {
			document.getElementById(aktuellbild).className = 'aktiv';
			document.getElementById('wechselbild').src = document.getElementById(aktuellbild).src
		} else {
			document.getElementById(aktuellbild).className = 'nichtaktiv';
		}
	}
}

function wegbeschreibung(text_links, bildlink, text_rechts) {
	
	x = screen.availWidth/2-609/2;
    y = screen.availHeight/2-625/2;
    var popuphtm = '<html><head><link rel="stylesheet" type="text/css" href="fileadmin/templates/plugnwork_styles.css" /></head><body class="popup_window"><div id="popup_frame"><div id="popup_bild"><img src="'+bildlink+'"width="609" alt="" /></div><div id="popup_links">'+text_links+'</div><div id="popup_rechts">'+text_rechts+'</div><div id="popup_balken"><a href="javascript:window.close();">Fenster schließen</a></div></div></body></html>'
    var popupWindow = window.open('','Wegbeschreibung','width=609, height=625,left='+x+',top='+y+',screenX='+x+',screenY='+y);
	
    popupWindow.document.write(popuphtm);
    popupWindow.document.close();   
    
}