
//SET UP MULTIDIMENTIONAL ARRAY - DO NOT CHANGE THIS
	matrix = new Array();
	matrix[0] = new Array();

//FULL PICTURE SPECS - CHANGE VALUES HERE TO ADD/REMOVE PICS

		matrix[0][1]  = "grendel_cover.jpg";
		matrix[0][2]  = "grendel_page1.jpg";
		matrix[0][3]  = "grendel_page2.jpg";
		matrix[0][4]  = "grendel_page3.jpg";
		matrix[0][5]  = "grendel_page4.jpg";
		matrix[0][6]  = "grendel_page5.jpg";
		matrix[0][7]  = "grendel_page6.jpg";
		matrix[0][8]  = "grendel_page7.jpg";
		matrix[0][9]  = "grendel_page8.jpg";

//END PICTURE SPECS

function popWindow(WhichImage) {

	ShowPic = matrix[0][WhichImage];
	windowWidth = 373;
	windowHeight = 550;
	windowTitle = "Jill Thompson";


	popupWindow = window.close
	 // if (!popupWindow || popupWindow.closed) {
	popupWindow = window.open("", "Popup", "resizable=yes,width="+windowWidth+",height="+windowHeight, false);
	// }
	popupWindow.document.open();
	popupWindow.document.writeln("<html><title>"+windowTitle+"</title><body MARGINHEIGHT=0 MARGINWIDTH=0 LEFTMARGIN=0 TOPMARGIN=0 onBlur='self.close()'>");
	popupWindow.document.writeln("<a href=javascript:close()><img src='books/images/"+ShowPic+ "' border=0></a>");
	popupWindow.document.writeln("</body></html>");
	popupWindow.document.close();
	popupWindow.focus();
}

