
//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/sketchbook/full/SkB1_28_100.jpg";
		matrix[1][1] = "400";
		matrix[2][1] = "609";
		matrix[3][1] = "--Sketchbook: Page 28--";
	
		matrix[0][2]  = "galleries/sketchbook/full/SkB_1_16_100.jpg";
		matrix[1][2]  = "601";
		matrix[2][2]  = "400";
		matrix[3][2]  = "--Sketchbook: Page 16--";

		matrix[0][3]  = "galleries/sketchbook/full/SkB_1_24btm_100.jpg";
		matrix[1][3]  = "543";
		matrix[2][3]  = "400";
		matrix[3][3]  = "--Sketchbook: Page 24--";
		



		matrix[0][4]  = "galleries/sketchbook/full/SkB_1_27_100.jpg";
		matrix[1][4]  = "400";
		matrix[2][4]  = "697";
		matrix[3][4]  = "--Sketchbook: Page 27--";
		
		matrix[0][5]  = "galleries/sketchbook/full/SkB_1_33_100.jpg";
		matrix[1][5]  = "400";
		matrix[2][5]  = "513";
		matrix[3][5]  = "--Sketchbook: Page 33--";

		matrix[0][6]  = "galleries/sketchbook/full/SkB_1_37_100.jpg";
		matrix[1][6]  = "400";
		matrix[2][6]  = "600";
		matrix[3][6]  = "--Sketchbook: Page 37--";




		matrix[0][7]  = "galleries/sketchbook/full/SkB_1_40bottom_100.jpg";
		matrix[1][7]  = "525";
		matrix[2][7]  = "400";
		matrix[3][7]  = "--Sketchbook: Page 40--";

		matrix[0][8]  = "galleries/sketchbook/full/SkB_1_43_100.jpg";
		matrix[1][8]  = "400";
		matrix[2][8]  = "538";
		matrix[3][8]  = "--Sketchbook: Page 43--";

		matrix[0][9]  = "galleries/sketchbook/full/SkB_1_50_100.jpg";
		matrix[1][9]  = "400";
		matrix[2][9]  = "524";
		matrix[3][9]  = "--Sketchbook: Page 50--";




		matrix[0][10]  = "galleries/sketchbook/full/SkB_1_52_100.jpg";
		matrix[1][10]  = "576";
		matrix[2][10]  = "400";
		matrix[3][10]  = "--Sketchbook: Page 52--";

		matrix[0][11]  = "galleries/sketchbook/full/SkB_1_57_100.jpg";
		matrix[1][11]  = "400";
		matrix[2][11]  = "534";
		matrix[3][11]  = "--Sketchbook: Page 57--";

		matrix[0][12]  = "galleries/sketchbook/full/SkB_1_60_100.jpg";
		matrix[1][12]  = "400";
		matrix[2][12]  = "545";
		matrix[3][12]  = "--Sketchbook: Page 60--";
		
//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();
}
