//<!--- *************** Search Box **************** --->

function defaultSetups(){
	document.searchForm.keyword.focus();
};;

function clearKeyword(formPath, keyword){
	if (formPath.value == keyword) {
		formPath.value = "";
	}
};;

function defaultSetups2(){
	document.advancedSearch.keyword.focus();
};;

function clearKeyword2(formPath){
	if (formPath.value == 'product name') {
		formPath.value = "";
	}
};;

function clearKeyword3(formPath){
	if (formPath.value == 'style') {
		formPath.value = "";
	}
};;
