function doEmptySearch() {
	if (document.search.qquery.value == "Type it here") {
		document.search.qquery.value = "";
	}
}

function doEmptySearchMain() {
	if (document.pricelist.qquery.value == "Type it here") {
		document.pricelist.qquery.value = "";
	}
}


function noBlank(){
	if (document.search.qquery.value == "" || document.search.qquery.value == "Type it here") {
		alert("Please enter what you wish to search for");
		document.search.qquery.focus();

		return false; 
	}
	else {
		return true;
	}
}
