	var mode = '';
	last_id = "";

	function swap_star(element, id, img)
	{
		start = document.getElementById('rating_' + element).value * 1;
		start+= 1;

		for (i = start; i <= id; i++)
			document.getElementById(element + "_" + i).src = "/gfx/v4/user/" + img;
	}

	function set_star(element, id)
	{
		if (document.getElementById('rating_' + element).value == id)
			document.getElementById('rating_' + element).value = 0
		else
			document.getElementById('rating_' + element).value = id;


		for (i = id + 1; i <= 5; i++)
			document.getElementById(element + "_" + i).src = "/gfx/v4/user/star_empty.gif"
	}

	function product_abfrage (cpcid)
	{
		if (confirm (textvar2))
		{
			if (mode != '')
				location.href = "collection.html?cpcid=" + cpcid + "&mode=" + mode + "&action=delete";
			else
				location.href = "collection.html?cpcid=" + cpcid + "&action=delete";
		}
		else
		{
		}
	}

	function abfrage_wishlist (cpcid)
	{
		if (confirm (textvar1))
		{
			if (mode != '')
				location.href = "collection.html?cpcid=" + cpcid + "&mode=" + mode + "&action=delete&show=wanted";
			else
				location.href = "collection.html?cpcid=" + cpcid + "&action=delete&show=wanted";
		}
		else
		{
		}
	}



	function product_show_edit(id)
	{
		if (last_id != "" && document.getElementById(last_id) != null)
			document.getElementById(last_id).style.display = "none";

		document.getElementById(id).style.display = "";

		last_id = id;
	}

	function product_hide_edit()
	{
		if (last_id != "")
			document.getElementById(last_id).style.display = "none";
	}

	function product_check_all()
	{
		for (var i = 0; i < document.forms.game.elements.length; i++)
		{
			var e = document.forms.game.elements[i];

			if ((e.name != 'allbox') && (e.type=='checkbox'))
				e.checked=document.forms.game.allbox.checked;
		}
	}

	function set_search_field(field)
	{
		if (field == "dvd")
		{
			document.getElementById("fo_game").style.display = "none";
			document.getElementById("fo_dvd").style.display = "";
		}
		else
		{
			document.getElementById("fo_dvd").style.display = "none";
			document.getElementById("fo_game").style.display = "";
		}
	}
