
//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]  = "img/booflu01_LG.jpg";
		matrix[0][2]  = "img/booflu02_LG.jpg";
		matrix[0][3]  = "img/booflu05_LG.jpg";
		matrix[0][4]  = "img/booflu06_LG.jpg";
		matrix[0][5]  = "img/booflu07_LG.jpg";
		matrix[0][6]  = "img/booflu08_LG.jpg";
		matrix[0][7]  = "img/booflu09_LG.jpg";
		matrix[0][8]  = "img/booflu10_LG.jpg";
		matrix[0][9]  = "img/booflu11_LG.jpg";
		matrix[0][10] = "img/booflu12_LG.jpg";
		matrix[0][11] = "img/booflu13_LG.jpg";
		matrix[0][12] = "img/booflu14_LG.jpg";
		matrix[0][13] = "img/booflu15_LG.jpg";
		matrix[0][14] = "img/booflu16_LG.jpg";
		matrix[0][15] = "img/booflu18_LG.jpg";
		matrix[0][16] = "img/booflu19_LG.jpg";
		matrix[0][17] = "img/booflu20_LG.jpg";
		matrix[0][18] = "img/booflu21_LG.jpg";
		matrix[0][19] = "img/booflu22_LG.jpg";
		matrix[0][20] = "img/booflu23_LG.jpg";
		matrix[0][21] = "img/booflu24_LG.jpg";
		matrix[0][22] = "img/booflu25_LG.jpg";
		matrix[0][23] = "img/booflu27_LG.jpg";
		matrix[0][24] = "img/booflu32_LG.jpg";
		matrix[0][25] = "img/booflu33_LG.jpg";
		matrix[0][26] = "img/booflu34_LG.jpg";
		matrix[0][27] = "img/booflu35_LG.jpg";
		matrix[0][28] = "img/booflu36_LG.jpg";
		matrix[0][29] = "img/booflu37_LG.jpg";
		matrix[0][30] = "img/booflu38_LG.jpg";
		matrix[0][31] = "img/booflu39_LG.jpg";
		matrix[0][32] = "img/boofluendpiece_LG.jpg";

	
//END PICTURE SPECS

function popWindow(WhichImage) {

	ShowPic = matrix[0][WhichImage];
	windowWidth = 600;
	windowHeight = 700;
	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/boo/"+ShowPic+ "' border=0></a>");
	popupWindow.document.writeln("</body></html>");
	popupWindow.document.close();
	popupWindow.focus();
}

