// google search
function search_google( bookTitle, bookAuthor)
{ 
	if (bookAuthor == undefined)
		bookAuthor = "";
	window.open("http://www.google.com/search?q=\""+ bookTitle + "\" " + bookAuthor);
}