			window.onload = function(){ // Better use use a modern onDomReady-Event instead
				if(window.location.search != '?noscript'){
					if(document.getElementById && document.getElementsByTagName){ // DOM available?
						popup = new PopUp();
						popup.addType({
							name: "pdf",
							width: 800,
							height: 900,
							location:true,
							title:"Dieses PDF Dokument wir in einem neuen Fenster geoeffnet"
						});
						popup.addType({
							name: "doc",
							width: 100,
							height: 100,
							resizable:true,
							title:"Dieses Word Dokument wir in einem neuen Fenster geoeffnet"
						});
						popup.addType({
							name: "extern",
							width: 200,
							height: 200,
							scrollbars:true,
							center:false,
							title:"Dieser Link verweist auf eine andere Domain und wird in einem neuen Fenster geoeffnet"
						});
						popup.addType({
							name: "info",
							width: 300,
							height: 300,
							top: 300,
							status:true
						});
						popup.apply();
						//popup.open("http://www.webkrauts.de");	
						//popup.open("http://www.webkrauts.de","extern");	
					}
				}
			}
