
//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/tk_sketches/tk_headshots1_full.jpg";
		matrix[1][1] = "600";
		matrix[2][1] = "420";
		matrix[3][1] = "";

		matrix[0][2] = "galleries/tk_sketches/tk_headshots2_full.jpg";
		matrix[1][2] = "400";
		matrix[2][2] = "464";
		matrix[3][2] = "";

		matrix[0][3] = "galleries/tk_sketches/tk_headshots3_full.jpg";
		matrix[1][3] = "439";
		matrix[2][3] = "550";
		matrix[3][3] = "";

		matrix[0][4] = "galleries/tk_sketches/tk_headshots4_full.jpg";
		matrix[1][4] = "600";
		matrix[2][4] = "304";
		matrix[3][4] = "";

		matrix[0][5] = "galleries/tk_sketches/tk_headshots5_full.jpg";
		matrix[1][5] = "378";
		matrix[2][5] = "550";
		matrix[3][5] = "";

		matrix[0][6] = "galleries/tk_sketches/tk_headshots6_full.jpg";
		matrix[1][6] = "391";
		matrix[2][6] = "550";
		matrix[3][6] = "";
	
		matrix[0][7] = "galleries/tk_sketches/tk_headshots7_full.jpg";
		matrix[1][7] = "393";
		matrix[2][7] = "550";
		matrix[3][7] = "";

		matrix[0][8] = "galleries/tk_sketches/tk_headshots8_full.jpg";
		matrix[1][8] = "411";
		matrix[2][8] = "550";
		matrix[3][8] = "";
	
		matrix[0][9] = "galleries/tk_sketches/tk_headshots9_full.jpg";
		matrix[1][9] = "488";
		matrix[2][9] = "550";
		matrix[3][9] = "";

		matrix[0][10] = "galleries/tk_sketches/tk_sketch1_full.jpg";
		matrix[1][10] = "461";
		matrix[2][10] = "500";
		matrix[3][10] = "";

		matrix[0][11] = "galleries/tk_sketches/tk_sketch2_full.jpg";
		matrix[1][11] = "500";
		matrix[2][11] = "306";
		matrix[3][11] = "";

		matrix[0][12] = "galleries/tk_sketches/tk_sketch3_full.jpg";
		matrix[1][12] = "496";
		matrix[2][12] = "550";
		matrix[3][12] = "";

		matrix[0][13] = "galleries/tk_sketches/tk_sketch4_full.jpg";
		matrix[1][13] = "396";
		matrix[2][13] = "550";
		matrix[3][13] = "";

		matrix[0][14] = "galleries/tk_sketches/tk_sketch5_full.jpg";
		matrix[1][14] = "400";
		matrix[2][14] = "417";
		matrix[3][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();
}
