
//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]  = "fables/fables_p1_full.jpg";
		matrix[0][2]  = "fables/fables_p2_full.jpg";
		matrix[0][3]  = "fables/fables_p3_full.jpg";
		matrix[0][4]  = "fables/fables_p4_full.jpg";
		matrix[0][5]  = "fables/fables_p5_full.jpg";
		matrix[0][6]  = "fables/fables_p6_full.jpg";
		matrix[0][7]  = "fables/fables_p7_full.jpg";
		matrix[0][8]  = "fables/fables_p8_full.jpg";
		matrix[0][9]  = "fables/fables_p9_full.jpg";

		matrix[0][10]  = "fables/fables_p10_full.jpg";
		matrix[0][11]  = "fables/fables_p11_full.jpg";
		matrix[0][12]  = "fables/fables_p12_full.jpg";
		matrix[0][13]  = "fables/fables_p13_full.jpg";
		matrix[0][14]  = "fables/fables_p14_full.jpg";
		matrix[0][15]  = "fables/fables_p15_full.jpg";
		matrix[0][16]  = "fables/fables_p16_full.jpg";
		matrix[0][17]  = "fables/fables_p17_full.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='"+ShowPic+ "' border=0></a>");
	popupWindow.document.writeln("</body></html>");
	popupWindow.document.close();
	popupWindow.focus();
}

