			window.onload = function(){ // Better use use a modern onDomReady-Event instead
				if(document.getElementById && document.getElementsByTagName){ // DOM available?
					popup = new PopUp();
					popup.addType({
						name: "shippingPop",
						width: 640,
						height: 600,
						resizable:true,
						center:true,
						scrollbars:true,
						title:"Versandkosten"
					});
					popup.addType({
						name: "printOrder",
						width: 640,
						height: 600,
						resizable:true,
						center:true,
						title:"Print"
					});
					popup.addType({
						name: "image",
						width: 300,
						height: 200,
						resizable:true,
						center:true,
						scrollbars:true,
						toolbar:false,
						title:"Image"
					});
					popup.addType({
						name: "info",
						width: 640,
						height: 600,
						resizable:true,
						center:true,
						scrollbars:true,
						title:"Info"
					});
					popup.apply();
				}
			}