function findLocation()
{
	var x = document.form.locator.selectedIndex;
	var area = document.form.locator.options[x].value;
	
	if(area == "N")
	{
		document.location.href = "OutLets_North.htm";
	}
	else if(area == "NE")
	{
		document.location.href = "OutLets_NorthEast.htm";
	}
	else if(area == "C")
	{
		document.location.href = "OutLets_Central.htm";
	}
	else if(area == "E")
	{
		document.location.href = "OutLets_East.htm";
	}
	else if(area == "W")
	{
		document.location.href = "OutLets_West.htm";
	}
}
