
//SET UP MULTIDIMENTIONAL ARRAY - DO NOT CHANGE THIS
	matrix = new Array();
	matrix[0] = new Array();
	matrix[1] = new Array();
	matrix[2] = new Array();
	matrix[3] = new Array();

//FULL PICTURE SPECS - CHANGE VALUES HERE TO ADD/REMOVE PICS

		matrix[0][1] = "galleries/astrocity/volume1/full/ACv1_1_p10_100.jpg";
		matrix[1][1] = "400";
		matrix[2][1] = "615";
		matrix[3][1] = "--Astro City: Volume 1, Issue 1,  Page 10--";
	
		matrix[0][2]  = "galleries/astrocity/volume1/full/ACv1_1_p11_100_sold.jpg";
		matrix[1][2]  = "400";
		matrix[2][2]  = "619";
		matrix[3][2]  = "--Astro City: Volume 1, Issue 1,  Page 11--";

		matrix[0][3]  = "galleries/astrocity/volume1/full/ACv1_2_p18_100.jpg";
		matrix[1][3]  = "400";
		matrix[2][3]  = "587";
		matrix[3][3]  = "--Astro City: Volume 1, Issue 2,  Page 18--";
		
		matrix[0][4]  = "galleries/astrocity/volume1/full/ACv1_5_p14_100.jpg";
		matrix[1][4]  = "400";
		matrix[2][4]  = "582";
		matrix[3][4]  = "--Astro City: Volume 1, Issue 5, Page 14--";
		
		
//END PICTURE SPECS

function popWindow(WhichImage) {

	var windowWidth = 495;
	var windowHeight = 550;
	var windowTitle = "";

	ShowPic = matrix[0][WhichImage];
	windowWidth = matrix[1][WhichImage];
	windowHeight = matrix[2][WhichImage];
	windowTitle = matrix[3][WhichImage];

/*	else if(WhichImage == "5") {
	else ShowPic = "image/top_background.jpg"
*/


	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();
}
