function formHandler(form)
{
	var bookID = document.bookListForm.bookList.options[document.bookListForm.bookList.selectedIndex].value;
	var url = "http://www.CapeBretonBooks.com/detail_1.jsp?book_id="+ bookID;
	
	/*document.write(url);*/
	NewWindow(url,'name','800','550','yes');
	return false;
}

