function openShopLink(){
	// Init
	var shopLink;
	// Set
	shopLink = document.getElementById("shop_list").value;
	// Exec
	window.open(shopLink, "_blank");
}

function openPopUp(src, title, width, height){
	window.open(src, title, "width=" + width + ", height=" + height + ", status=no, toolbar=no, menubar=no");
}

function openImagePopUp(src){
	window.open("popup_image.php?src=" + src, "Bild", "width=400, height=300, status=no, toolbar=no, menubar=no");
}

function openFlashPopUp(src, width, height, param){
	window.open("popup_flash.php?src=" + src + "&param=" + param + "&width=" + width + "&height=" + height, "Flash", "width=" + width + ", height=" + height + ", status=no, toolbar=no, menubar=no");
}