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

function formularSubmit(id){
	var form = document.getElementById(id);
	form.submit();
}

function showCover(el, src){
	var box = $(".mouse_box");
	var image = '<img src="' + src + '"/>';
	box.html(image);
	var offset = 15;
	$(el).mouseover(function(e){
		box.css({left:offset+e.pageX, top:offset+e.pageY});
	});
	$(el).mousemove(function(e){
		box.css({left:offset+e.pageX, top:offset+e.pageY});
	});
	//box.css({display: "block"});
	box.fadeIn();
}

function hideCover(){
	var box = $(".mouse_box");
	box.hide();
}

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");
}