// JavaScript Document
function SearchByCategory(sender) {
	var intCategoryID = sender.options[sender.selectedIndex].value;
	window.location = "stores.asp?c="+intCategoryID;	
}

function SearchByStore(sender) {
	var strLink = sender.options[sender.selectedIndex].value;
	window.open(strLink, "_blank");
}
