			swfobject.registerObject("aqua_map_overlay", "9.0.0");

			function thisMovie(movieName){
				if (navigator.appName.indexOf("Netscape") != -1 && navigator.userAgent.indexOf("Chrome") == -1 && navigator.userAgent.indexOf("Safari") == -1) {
					return document[movieName];
				} else {
					return document.getElementById(movieName);
				}
			}

			function openMap(){
				document.getElementById("flash_overlay").style.left="293px";
				document.getElementById('ChooseDestination').focus();
				window.setTimeout(
					function(){
						thisMovie("aqua_map_overlay").sendToActionScript('open');
					}, 500
				);

				window.setTimeout(
					function(){
						document.getElementById("closebg").style.left="0";
					}, 500
				);

				window.setTimeout(
					function(){
						document.getElementById("location").style.left="755px";
						document.getElementById("closeFLV").style.left="820px";
					}, 1000
				);
				
			}

			function closeMap(){
				document.getElementById("location").style.left="-999em";
				document.getElementById("closeFLV").style.left="-999em";
				document.getElementById("closebg").style.left="-999em";
				
				thisMovie("aqua_map_overlay").sendToActionScript('close');
				window.setTimeout(
					function(){
						document.getElementById("flash_overlay").style.left="-999em";
					}, 500
				);
			}

			function openDestination(){
				var destinations = {
						'at' : 'http://www.generationblue.at/',
						'cz' : 'http://www.generationblue.cz/'
					},
					selection = document.getElementById('ChooseDestination').options[document.getElementById('ChooseDestination').selectedIndex].value,
					PopWindow = window.open( destinations[selection] , '_blank' );
					
				try {
					PopWindow.creator = self;
					PopWindow.focus();
				} catch(e) {
					alert('Diese Seite versucht ein Popup zu öffnen.\nBitte schalte Deinen Popup-Blocker aus und versuche es noch einmal.');
				} 
			}