// JavaScript Document
//Functions borrowed from abebooks.com as a work-around for mozilla's pop-up blocker.
function openNewWindow( link_URL, width, height, scrollbars )
			{
				openNewWindow( link_URL, width, heigth, scrollbars, 'no', 'no', 'no', 'no', 'no' );
			}
function openNewWindow( link_URL, width, height, scrollbars, resizable, menu, tool, locationbar, statusbar )
			{
				windowAttributes ='width=' + width + ',height=' + height + ',scrollbars=' + scrollbars + ',resizable=' + resizable + ',menubar=' + menu + ',toolbar=' + tool + ',location=' + locationbar + ',status=' + statusbar;
				window.open( link_URL, 'plain', windowAttributes);
			}