
function findme() 
   {
		getword = document.searchform.findword.value
		if (getword == 0)
			{
				alert("Please enter the title or author of the book you want to find.")
			}else{
				document.location.href = "bookshop/booksearch.html?findword=" + getword
		   }
   }




