


// finds the URL associated with an option in the homepage SELECT box and redirects
// the browser to that page.
function homeWindow()
{
	if(homeLocations[D1.selectedIndex] != "")
		top.location = homeLocations[D1.selectedIndex]
}

// populate this array to match the options in the SELECT field below.  The homeWindow()
// function will use these values to redirect the browser when the user selects something.
var homeLocations = new Array
(
	"", // choose an option
	"/snap/applicant_recipients/",
	"/snap/retailers/",
	"/snap/government/",
	"/snap/researchers/",
	"/snap/public_advocacy/"
)

//---END
//------------------------------------------







