<!--

		
		function PopUp (URL) {
		 fenster=window.open(URL, "", "width=500,height=300,status=no,scrollbars=yes,resizable=no");
		 fenster.focus();
		}
		
		function ShowPromotionLayer(img) {

			document.getElementById("PromotionLayer").src = "../_inc/gfx/"+ img;
		
			document.getElementById("PromotionLayerBackground").style.visibility = "visible";
			document.getElementById("PromotionLayer").style.visibility = "visible";
		
		}
		
		function ClosePromotionLayer() {
			document.getElementById("PromotionLayerBackground").style.visibility = "hidden";
			document.getElementById("PromotionLayer").style.visibility = "hidden";
		}
		
		function PopUpImage (URL,breite,hoehe) 
		 {
			 fenster=window.open(URL, "", "width="+breite+",height="+hoehe+",status=no,scrollbars=yes,resizable=no");
			 fenster.focus(); 
		 }
//-->
