function cleartext() {
	document.stylesearch.question.value = "";
}

function toggleLists(initialListID, fullListID) {
	try {
		var initialList = document.getElementById(initialListID);
		var fullList = document.getElementById(fullListID);
		if (initialList) {
			if (initialList.style.display == "none") {
				initialList.style.display = "";
				fullList.style.display = "none";
			} else {
				initialList.style.display = "none";
				fullList.style.display = "";
			}
		}
	} catch (e) {
	}
}

function verify_search() {
	if (document.stylesearch.question.value == "") {
		alert("Please enter a keyword or a style number to search.");
		document.stylesearch.question.focus();
		return false;
	}

}


