// JavaScript Document

function brandSearch(){
	            		var searchvalue=document.getElementById("brandbox_input_2");
					if (searchvalue.value !="-1") {
						//alert("Search value is "+searchvalue.value);
						
						if ((document.getElementById("brandbox_input_2").value).indexOf("http") ==-1) {						
	            			window.location="http://store.perfumheadquarter.com/Store/Search.aspx?key="+searchvalue.value;
							} else {
							window.location=searchvalue.value;
							}
						
						
						} else {
						alert("Please select a brand to search by");
						}
            	}



