function GoPage(location)
{

//=========================================================================
// these links must be updated everytime items are added or deleted

	var dips_cooking_spices = "http://www.webstem.com/ultimategourmet/catalog/cat35_1.htm";

	var cheeseball = "http://www.webstem.com/ultimategourmet/catalog/cat34_1.htm";

	var foccaccia_beer = "http://www.webstem.com/ultimategourmet/catalog/cat30_1.htm";

	var healthy_bean = "http://www.webstem.com/ultimategourmet/catalog/cat36_1.htm";

	var party_sampler_triple_spice = "http://www.webstem.com/ultimategourmet/catalog/cat39_1.htm";

	var bread_machine_triple_spice = "http://www.webstem.com/ultimategourmet/catalog/cat32_1.htm";

	var herb_spice_seasoning = "http://www.webstem.com/ultimategourmet/catalog/cat29_1.htm";

	var gourmet_hot_chocolate = "http://www.webstem.com/ultimategourmet/catalog/cat38_1.htm";

	var bruschetta = "http://www.webstem.com/ultimategourmet/catalog/cat33_1.htm";

	var spiced_drink = "http://www.webstem.com/ultimategourmet/catalog/cat40_1.htm";

	var biscotti = "http://www.webstem.com/ultimategourmet/catalog/cat31_1.htm";

	var cheesecake_cheeseball = "http://www.webstem.com/ultimategourmet/catalog/cat41_1.htm";

	var holiday_bread = "http://www.webstem.com/ultimategourmet/catalog/cat37_1.htm";

	var goodies = "http://www.webstem.com/ultimategourmet/catalog/cat42_1.htm";

	var sun_dried_tomatoes = "http://www.webstem.com/ultimategourmet/catalog/item527.htm";

//==========================================================================
	switch(location)
	{
		case "dips_cooking_spices" :
			top.location.href = dips_cooking_spices;
			break;
		case "cheeseball" :
			top.location.href = cheeseball;
			break;
		case "foccaccia_beer" :
			top.location.href = foccaccia_beer;
			break;
		case "healthy_bean" :
			top.location.href = healthy_bean;
			break;
		case "party_sampler_triple_spice" :
			top.location.href = party_sampler_triple_spice;
			break;
		case "bread_machine_triple_spice" :
			top.location.href = bread_machine_triple_spice;
			break;
		case "herb_spice_seasoning" :
			top.location.href = herb_spice_seasoning;
			break;
		case "gourmet_hot_chocolate" :
			top.location.href = gourmet_hot_chocolate;
			break;
		case "bruschetta" :
			top.location.href = bruschetta;
			break;
		case "spiced_drink" :
			top.location.href = spiced_drink;
			break;
		case "biscotti" :
			top.location.href = biscotti;
			break;
		case "cheesecake_cheeseball" :
			top.location.href = cheesecake_cheeseball;
			break;
		case "holiday_bread" :
			top.location.href = holiday_bread;
			break;
		case "goodies" :
			top.location.href = goodies;
			break;
		case "sun_dried_tomatoes" :
			top.location.href = sun_dried_tomatoes;
			break;
	}
}
