//Hide selects

function hideselects(state) {
	for(i=0;i<document.forms.length;i++){ // if there are forms on the page
		frm = document.forms[i];
		var inputs = frm.getElementsByTagName("SELECT");
		for (j=0;j<inputs.length;j++){
			inputs[j].style.visibility = state;
		}
	}
}

//nice search box text reset

function resetsearch(whichbox){
	
	if (document.getElementById(whichbox).value == ""){
		if (whichbox == "keyword"){
			document.getElementById(whichbox).value = "Search by Keyword";	
		}else{
			document.getElementById(whichbox).value = "Search by Part Number";	
		}
	};
}
