// dropdown menu for allergic disease center

function selectiveGo(params) {
	//params
	//1st: hash, parentlink, newwinlink
	//2nd: hash name or page url
	optionParams = params.split(",");
	optionType = optionParams[0];
	optionLoc = optionParams[1];
	switch (optionType) {
		case "parentlink":
		window.location.href = optionLoc;
		break;
		case "newwinlink":
		var selectiveGoWin = window.open(optionLoc);
		break;
		default:
		window.location.hash = optionLoc;
	}
}


