function remove_from_wishlist(upc)
{
	tile = $("Wishlist"+upc);
	if (tile)
	{
		tile.style.display = 'none';
	}
}