function clearSearchboxValue() {
        var queryInput = document.getElementById('s');
        if (queryInput) {
        	queryInput.value="";
        	}
        }

function resetSearchboxValue() {
	var queryInput = document.getElementById('s');
	if (queryInput) {
		if(queryInput.value == "")
			queryInput.value="SEARCH";
		}
        }
