// Skripte in dieser Datei werden auf der gesamten Seite verfügbar gemacht
function PopUp(title, url, center, top, left, height, width, scrollbars, menubar, locationbar, statusbar, resizable, fullscreen) {
				
				// Aktuelle Höhen und Breiten beziehen
				if (document.all) {
					w = document.body.clientWidth;
					h = document.body.clientHeight;
				} else if (document.layers) {
					w = window.innerWidth;
					h = window.innerHeight;
				}
				
				var leftCenter = (w - width)/2, topCenter = (h - height)/2;
				
				// Optionen zusammenstellen
				var options = "";
				
				if (scrollbars) options += "scrollbars=yes, ";
				else options +="scrollbars=no, ";
				
				if (menubar) options +="menubar=yes, ";
				else options +="menubar=no, ";
				
				options +="width=" + width + ", ";
				options +="height=" + height +", ";
				
				if (center) options += "left=" + leftCenter + ", top=" + topCenter + ", ";
				else options += "left=" + left + ", top=" + top +", ";
				
				if (locationbar) options +="locationbar=yes, ";
				else options +="locationbar=no, ";
				
				if (statusbar) options += "statusbar=yes, ";
				else options +="statusbar=no, ";
				
				if (resizable) options += "resizable=yes, ";
				else options += "resizable=no, ";
				
				if (fullscreen) options += "fullscreen=yes, ";
				else options += "fullscreen=no, ";
			
				// Fenster öffnen ;-)
				window.open(url,title,options);
						
			}
			
			function checkChanged() {
			 if (changed) {
				return confirm("Sie haben eventuell Änderungen gemacht. Das Ausführen dieser Funktion könnte diese Änderungen löschen, sind sie sicher?");
			 }
			}