function disclaimer() {
	alert('Price is accurate as of the date/time indicated. Prices and product availability are subject to change. Any price displayed on the Amazon website at the time of purchase will govern the sale of this product.');
}
function searchClick(txtBox) {
			document.getElementById("searchOptions").style.display = "block";
			txtBox.style.backgroundColor = "#EFEFEF";
			if (txtBox.value == "search for amazon deals") {
				txtBox.value = "";
			}
			return true;
}

