function submitProductSearch(){
	if(validateProductSearch()==true){
		document.productsearch.submit();
	}
}

function validateProductSearch(){
	if (document.productsearch.productquery.value=="") {
	alert("Oops! Please enter your SEARCH QUERY.")
	document.productsearch.productquery.focus()
	return false
	}
	try{
	document.productsearch.searchsubmit.value = "Searching...";
	document.productsearch.searchsubmit.disabled = true;
	}
	catch(e){}
	
return true
}

function resetSearch(){ //customised
	if (document.productsearch.productquery.value=="Enter search..."){
		document.productsearch.productquery.value = "";
		document.productsearch.productquery.focus();
	}
}

