<!-- hide from other browsers	

//SET UP MULTIDIMENTIONAL ARRAY - DO NOT CHANGE THIS
	gallerypic = new Array();
	gallerypic[0] = new Array();
	gallerypic[1] = new Array();
	gallerypic[2] = new Array();
	gallerypic[3] = new Array();
	gallerypic[4] = new Array();

//FULL PICTURE SPECS - CHANGE VALUES HERE TO ADD/REMOVE PICS
gallerypic[0][1] = "images/Noah.jpg";
gallerypic[3][1] = "Portrait / Pen and Ink Illustration / Realistic Portrait of Noah";
gallerypic[4][1] = "&mdash; Portrait of Tom's son, Noah";
gallerypic[0][2] = "images/jimi.jpg";
gallerypic[3][2] = "Portrait / Pencil Illustration / Jimi Hendrix";
gallerypic[4][2] = "&mdash; Piece from 1996, one of the oldest on the site";
gallerypic[0][3] = "images/108ladyby4.jpg";
gallerypic[3][3] = "Portrait / Pen and Ink Illustration / 108 Year Old Woman";
gallerypic[4][3] = "&mdash; Another piece from the college years, 4 studies";
gallerypic[0][4] = "images/fitzy.jpg";
gallerypic[3][4] = "Portrait / Pen and Ink Illustration / John D. Fitzgibbons";
gallerypic[4][4] = "&mdash; Portrait of my old friend, Fitzie";
gallerypic[0][5] = "images/fitzy2.jpg";
gallerypic[3][5] = "Portrait / Pen and Ink Illustration / John D. Fitzgibbons, Take 2";
gallerypic[4][5] = "&mdash; Another portrait of my old friend, Fitzie";
gallerypic[0][6] = "images/daves_fitzie.jpg";
gallerypic[3][6] = "Portrait / Pen and Ink Illustration / John D. Fitzgibbons, Take 3";
gallerypic[4][6] = "&mdash; Yet another portrait of my old friend, Fitzie";
gallerypic[0][7] = "images/Morrison.jpg";
gallerypic[3][7] = "Portrait / Pencil Illustration / Jim Morrison";
gallerypic[4][7] = "&mdash; No, this might be the oldest piece here.  From 1992 or 1993.";
gallerypic[0][8] = "images/daveskids_both.jpg";
gallerypic[3][8] = "Portrait / Pen and Ink Illustration / Dave's Kids 1";
gallerypic[4][8] = "&mdash; Portrait of my friend Dave's children.";
gallerypic[0][9] = "images/daveskids.jpg";
gallerypic[3][9] = "Portrait / Pen and Ink Illustration / Dave's Kids 2";
gallerypic[4][9] = "&mdash; Portrait of my friend Dave's children.";
gallerypic[0][10] = "images/daveskids2.jpg";
gallerypic[3][10] = "Portrait / Pen and Ink Illustration / Dave's Kids 3";
gallerypic[4][10] = "&mdash; Portrait of my friend Dave's children.";
gallerypic[0][11] = "images/chiefseattle.jpg";
gallerypic[3][11] = "Caricature / Pen and Ink Illustration / Chief Seattle";
gallerypic[4][11] = "&mdash; Illustration of the wise old Chief Seattle";
gallerypic[0][12] = "images/chucknbob.jpg";
gallerypic[3][12] = "Caricature / Pen and Ink Illustration / Chuck Paulsen and Robert Brand";
gallerypic[4][12] = "&mdash; The two-headed monster";
gallerypic[0][13] = "images/cohen.jpg";
gallerypic[3][13] = "Caricature / Pencil Illustration / Leonard Cohen";
gallerypic[4][13] = "&mdash; One of my heroes, ol' Leonard.";
gallerypic[0][14] = "images/nickcave.jpg";
gallerypic[3][14] = "Portrait / Pencil Illustration / Nick Cave";
gallerypic[4][14] = "&mdash; Quick illustration of another hero, the baddest seed.";
gallerypic[0][15] = "images/judelaw.jpg";
gallerypic[3][15] = "Portrait / Pencil Illustration / Jude Law";
gallerypic[4][15] = "&mdash; How the hell did he get here?  A warm up illustration, to get the hand working.";
gallerypic[0][16] = "images/Oliver_and_Bart.jpg";
gallerypic[3][16] = "Illustration / Cartoon Art / Simpsons ";
gallerypic[4][16] = "&mdash; Oliver &amp; Bart: Troublemakers Forever";
gallerypic[0][17] = "images/AuntKathFinal.jpg";
gallerypic[1][17] = "800";
gallerypic[2][17] = "800";
gallerypic[3][17] = "Caricatures / Aunt Kath ";
gallerypic[4][17] = "&mdash; A caricature illustrated in May 2008.  Final piece: 14\" x 17\", full color, glossy poster paper.";
gallerypic[0][18] = "images/lyon_caricature.jpg";
gallerypic[1][18] = "800";
gallerypic[2][18] = "800";
gallerypic[3][18] = "Caricatures / Cheryl Lyon's Father ";
gallerypic[4][18] = "&mdash; A caricature illustrated in October 2008.  Final piece: 11\" x 15\", full color, glossy poster paper.";


//END PICTURE SPECS

function popWindow(WhichImage) {

	var windowWidth = 850;
	var windowHeight = 650;
	var windowTitle = "";
	var imgTitle = "";

	ShowPic = gallerypic[0][WhichImage];
	windowTitle = gallerypic[3][WhichImage];
	imgTitle = gallerypic[4][WhichImage];


	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><head><title>"+windowTitle+"</title><link rel='stylesheet' type='text/css' href='site.css'></head><body MARGINHEIGHT=0 MARGINWIDTH=0 LEFTMARGIN=2 TOPMARGIN=0 onBlur='self.close()' bgcolor='#003366'>");
	popupWindow.document.writeln("<div style='background: #ffffff; border: 1px solid #336699; color: #663333; font: 11px/17px Verdana, Helvetica, sans-serif; font-weight: bold; margin: 0 0 0 0; padding: 0 0 0 2px; width: 100%;}'><i>"+windowTitle+ "</i> "+imgTitle+"</div><br />");
	popupWindow.document.writeln("<center><a href=javascript:close()><img src='"+ShowPic+ "' border=0></a></center>");
	popupWindow.document.writeln("</body></html>");
	popupWindow.document.close();
	popupWindow.focus();
}
// Stop hiding from old browsers -->