// ONLY USE lowercase FOR ALL OPTIONS// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ONvar viewer	 		= "no"		// yes/FULL SCREEN OR no/POPUP MODEvar view_width 		= 1024		// GALLERY POPUP WIDTHvar view_height 	= 700		// GALLERY POPUP HEIGHTfunction popUp(URL) {   if (viewer == "no") {var look='toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width='+view_width+',height='+view_height+',top=0,left=0'popwin=window.open("","",look)}else if (viewer == "yes") {popwin=window.open()}popwin.document.open()popwin.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ')popwin.document.write('"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">')popwin.document.write('<html xmlns="http://www.w3.org/1999/xhtml">')popwin.document.write('<head><title>Image Preview</title>')popwin.document.write('<meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" /></head>')popwin.document.write('<body>')popwin.document.write('<center><img src="'+URL+'" alt="" /></center>')popwin.document.write('<center><form action="" style="margin:3ex;"><input type="submit" value="Close" onclick=\'self.close()\' /></form></center>')popwin.document.write('</body>')popwin.document.write('</html>')popwin.document.close()}