<!-- 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/ClimateChange.jpg";
gallerypic[3][1] = "Editorial Cartoon / Global Warming ";
gallerypic[4][1] = "&mdash; Sweetie, sometimes it hurts less to be wrong if both sides agree on a new name for a problem . . . So I should call it 'Climate Change' from now on? . . . Yep! 'Night George! . . . G'Night Laura";
gallerypic[0][2] = "images/IDA.gif";
gallerypic[3][2] = "Editorial Cartoon / Sullivan County ";
gallerypic[4][2] = "&mdash; Happy holidays for the next 15 years from the I.D.A.";
gallerypic[0][3] = "images/Arctic_Break.jpg";
gallerypic[3][3] = "Editorial Cartoon / Global Warming ";
gallerypic[4][3] = "&mdash;  Sign: Coming Soon Arctic Spring Break.  Bear: You know what?  I think I'm over my hang-up about eating tourists";
gallerypic[0][4] = "images/brain_drain.jpg";
gallerypic[3][4] = "Editorial Cartoon / Talking Heads ";
gallerypic[4][4] = "&mdash; Brain Drain"; 
gallerypic[0][5] = "images/evil.jpg";
gallerypic[3][5] = "Editorial Cartoon ";
gallerypic[4][5] = "&mdash; Evil or Ignorant";
gallerypic[0][6] = "images/patina.jpg";
gallerypic[3][6] = "Editorial Cartoon ";
gallerypic[4][6] = "&mdash; Patina";
gallerypic[0][7] = "images/reagan.jpg";
gallerypic[3][7] = "Editorial Cartoon ";
gallerypic[4][7] = "&mdash; King Reagan";
gallerypic[0][8] = "images/wizard.jpg";
gallerypic[3][8] = "Editorial Cartoon ";
gallerypic[4][8] = "&mdash; The Wizard";
gallerypic[0][9] = "images/madcow.jpg";
gallerypic[3][9] = "Editorial Cartoon / Mad Cow Disease ";
gallerypic[4][9] = "&mdash; Oprah and Dr. Phil";
gallerypic[0][10] = "images/smokinghemp.jpg";
gallerypic[3][10] = "Editorial Cartoon ";
gallerypic[4][10] = "&mdash; Marijuana";
gallerypic[0][11] = "images/moonlitter.jpg";
gallerypic[3][11] = "Editorial Cartoon ";
gallerypic[4][11] = "&mdash; Moon Litter";
gallerypic[0][12] = "images/choosenottobreed.jpg";
gallerypic[3][12] = "Editorial Cartoon ";
gallerypic[4][12] = "&mdash; Breeding";
gallerypic[0][13] = "images/shame.jpg";
gallerypic[3][13] = "Editorial Cartoon / Pornography ";
gallerypic[4][13] = "&mdash; The Shame of it All";


//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 -->
