var popupWindow;
function openPopup(url) {
	var windowW = 626;
	var windowH = 436;
	// Errechnet Koordinaten, um das Popup zentriert zu platzieren
	var posLeft = 200;//(screen.width/2)-(windowW/2);
	var posTop = 200;//(screen.height/2)-(windowH/2);
	
	popupWindow = window.open(url,"Share","height="+windowH+",width="+windowW+",status = no,toolbar = no,menubar = no,location = no,resizable = no,titlebar = no,scrollbars = yes,fullscreen = no,top ="+posLeft+",left ="+posTop);
	popupWindow.focus();
	stopSounds();
}
// get our flash movie object
var flashMovie;
function init() {
   if (document.getElementById) {
      flashMovie = document.getElementById("boothmodule");
   }
}

function navigateTo(url){
	window.location.href = url;
}

// wait for the page to fully load before initializing
window.onload = init;

// for updating the color box
function stopSounds() {
   if (flashMovie) {
      flashMovie.stopSounds();
   }
}

function closePopup(){
	//alert("closePopup");
	popupWindow.close();
}
function shrinkWindow(){
	window.resizeTo(200, 200);
}
