function SearchPanel_Search(e)
{
		// grab all the data from the form
		var strText = document.forms["Form1"].Banner1_SearchPanel1_txtSearch.value;
		var strCategory = document.forms["Form1"].Banner1_SearchPanel1_dropDownCategories.value;
		var strSortBy = document.forms["Form1"].Banner1_SearchPanel1_dropDownSortBy.value;
		var strHREF = "Search.aspx?Find=" + strText + "&CategoryID=" + strCategory + "&SortBy=" + strSortBy;
		
		// now change the page to search
		if(navigator.appName != "Netscape")			
		{	
			if(event.keyCode == 13) 
			{
				event.cancelBubble = true;
				event.returnValue = false;
				window.location.href = strHREF;
			}			
		}
		else
		{								
			if(e.which == 13)
			{				
				window.location.href = strHREF;					
				e.stopPropagation();				
				return false;
			}
		}
				
	return true;
}
