Welcome to TiddlyWiki created by Jeremy Ruston, Copyright © 2007 UnaMesa Association
[[About]]\n[[List of Collections|Archival Collections List]]\n[[Digital Collections]]\n[[Search Collections|http://library.wcsu.edu/cao/]]\n
<!--{{{-->\n\n<script>\n\nif (screen.width <= 481) {\n\n document.location = "http://mobi.example.com/"\n\n }\n\n</script>\n<div macro='showWhen zw.loggedIn'>\n<div class='toolbar' macro='toolbar -closeTiddler closeOthers +editTiddler permalink references revisions jump'> </div>\n</div>\n\n<div class='title' macro='view title'></div>\n\n<div macro='showWhen zw.loggedIn'>\n <div class='subtitle'><span macro='view modifier link'></span>, <span macro='view modified date [[DD MMM YYYY]]'></span> (created <span macro='view created date [[DD MMM YYYY]]'></span>) <span macro='view renamedSubTitle'></span> <span macro='view historicalSubTitle'></span></div>\n</div>\n\n<div class='viewer' macro='view text wikified'></div>\n<div class='tagClear'></div>\n\n<!--}}}-->\n\n
<<tagCloud>>
/***\nThis tiddler is a special status tiddler. It is a DTML script that interrogates Zope about the status of your tiddlers. The variables below are dynamic and this tiddler is reloaded when you login. Editing this tiddler through ZiddlyWiki will break your ZiddlyWiki. (If you need to make modifications, edit it in the ZMI)\n***/\n//{{{\nif(typeof document.zw == "undefined") var zw = {};\nzw.loggedIn = false;\nzw.anonEdit = false;\nzw.isAdmin = false;\nzw.latestTiddler = 132456189616;\nzw.username = 'Anonymous User';\nconfig.options.txtUserName = 'Anonymous User';\nzw.serverUrl = "http://archives.library.wcsu.edu/archives";\nversion.extensions.ZiddlyWiki = '1';\nzw.tiddlerList = {"2010/05/26": "913.6.10799.34013","2010/07/20": "913.6.10799.34013","2010/09/27": "913.6.10799.34013","2010/11/09": "913.6.10799.34013","2011/02/03": "913.6.10799.34013","2011/04/12": "913.6.10799.34013","About": "914.30117.6649.50022","Archival Collections List": "913.18.57789.35601","Banner": "913.7.31542.53435","Brooklyn Historical Society Gift": "913.7.31542.53435","Contents By Title": "913.8.2216.6690","CookieJar": "913.8.2216.6690","Deed of Gift": "913.8.60606.10513","DefaultTiddlers": "913.8.60606.10513","Digital Collections": "914.30046.11849.460","EAD Production Guide": "913.9.35397.62958","Faculty Monographs": "913.9.35397.62958","Features": "913.57432.44259.19268","FeaturesOld": "913.9.35397.62958","GettingStarted": "913.10.7493.25890","History Research Tutorial": "913.14215.18144.14592","Hours": "913.11.10175.4386","InlineJavascriptPlugin": "913.18.25702.44680","MainMenu": "914.29622.17199.9472","MarkupPostHead": "913.12.56343.27835","News": "915.17149.45961.61542","OptionsPanel": "913.13.43477.53299","PageTemplate": "913.5.26157.45977","Request copies": "913.13.43477.53299","Resource Links": "913.14218.4247.56081","SideBarOptions": "913.45.63087.37188","SimpleSearchPlugin": "913.14.48589.23825","SinglePageModePlugin": "913.14.48589.23825","SiteSubtitle": "913.5.11527.33450","Staff": "915.17151.39501.53504","StyleSheet": "913.5.26157.45977","Tagcloud": "913.15.27918.62105","Unique Titles from Brooklyn Historical Society Gift": "913.15.27918.62105","ViewTemplate": "913.5.26157.45977","WindowTitle": "913.16.72.1570","ZiddlyFormats": "913.16.72.1570"};\n//}}}\n
/***\n\n|Name|ToggleSideBarMacro|\n|Created by|SaqImtiaz|\n|Location|http://tw.lewcid.org/#ToggleSideBarMacro|\n|Version|1.0|\n|Requires|~TW2.x|\n!Description:\nProvides a button for toggling visibility of the SideBar. You can choose whether the SideBar should initially be hidden or displayed.\n\n!Demo\n<<toggleSideBar "Toggle Sidebar">>\n\n!Usage:\n{{{<<toggleSideBar>>}}} <<toggleSideBar>>\nadditional options:\n{{{<<toggleSideBar label tooltip show/hide>>}}} where:\nlabel = custom label for the button,\ntooltip = custom tooltip for the button,\nshow/hide = use one or the other, determines whether the sidebar is shown at first or not.\n(default is to show the sidebar)\n\nYou can add it to your tiddler toolbar, your MainMenu, or where you like really.\nIf you are using a horizontal MainMenu and want the button to be right aligned, put the following in your StyleSheet:\n{{{ .HideSideBarButton {float:right;} }}}\n\n!History\n*23-07-06: version 1.0: completely rewritten, now works with custom stylesheets too, and easier to customize start behaviour. \n*20-07-06: version 0.11\n*27-04-06: version 0.1: working.\n\n!Code\n***/\n//{{{\nconfig.macros.toggleSideBar={};\n\nconfig.macros.toggleSideBar.settings={\n styleHide : "#sidebar { display: none;}\sn"+"#contentWrapper #displayArea { margin-right: 1em;}\sn"+"",\n styleShow : " ",\n arrow1: "ë",\n arrow2: "û"\n};\n\nconfig.macros.toggleSideBar.handler=function (place,macroName,params,wikifier,paramString,tiddler)\n{\n var tooltip= params[1]||'toggle sidebar';\n var mode = (params[2] && params[2]=="hide")? "hide":"show";\n var arrow = (mode == "hide")? this.settings.arrow1:this.settings.arrow2;\n var label= (params[0]&¶ms[0]!='.')?params[0]+" "+arrow:arrow;\n var theBtn = createTiddlyButton(place,label,tooltip,this.onToggleSideBar,"button HideSideBarButton");\n if (mode == "hide")\n { \n (document.getElementById("sidebar")).setAttribute("toggle","hide");\n setStylesheet(this.settings.styleHide,"ToggleSideBarStyles");\n }\n};\n\nconfig.macros.toggleSideBar.onToggleSideBar = function(){\n var sidebar = document.getElementById("sidebar");\n var settings = config.macros.toggleSideBar.settings;\n if (sidebar.getAttribute("toggle")=='hide')\n {\n setStylesheet(settings.styleShow,"ToggleSideBarStyles");\n sidebar.setAttribute("toggle","show");\n this.firstChild.data= (this.firstChild.data).replace(settings.arrow1,settings.arrow2);\n }\n else\n { \n setStylesheet(settings.styleHide,"ToggleSideBarStyles");\n sidebar.setAttribute("toggle","hide");\n this.firstChild.data= (this.firstChild.data).replace(settings.arrow2,settings.arrow1);\n }\n\n return false;\n}\n\nsetStylesheet(".HideSideBarButton .button {font-weight:bold; padding: 0 5px;}\sn","ToggleSideBarButtonStyles");\n\n//}}}
<html>\n<head>\n<script>\n<!--\nfunction FP_popUpMsg(msg) {//v1.0\n alert(msg);\n}\n// -->\n</script>\n\n\n</head>\n<body>\n\n<b><font color="#FF0000" size="5">Overview</font></b><p>To begin a research project you need to consider:</p>\n<ol>\n <li>types of resources\n you will need</li>\n <li>how you will get access to those resources </li>\n <li>a strategy of attaining, recording, and creating a developed written \n treatment of the information found in those resources</li>\n</ol>\n<hr>\n <p><i>If you were looking at your research like a lawyer taking a criminal case \nto trial, your secondary sources would be like character witnesses and provide \ncircumstantial evidence. Your primary sources would be exhibits, witnesses to the \ncrime or elements of the crime. </i></p>\n\n<p><b><font size="4">Types of resources... </font></b></p>\n<blockquote>\n <b>\n <font color="#008080" onmouseover="FP_popUpMsg('For example: from wikipedia "...Thaw was the jealous millionaire husband of Evelyn Nesbit, a popular actress and artist\s's model, with whom White had a manipulative relationship when she was 16 (to his 47)..."\sr\sn\sr\snHow does the writer know that Evelyn Nesbit had this relationship?\sr\sn\sr\snHow does the writer know Evelyn\s's age?\sr\sn\sr\snThis is a SECONDARY SOURCE.')">Secondary sources\n</font></b>\n <ul>\n <li>Other peoples’ research\n</li>\n <li>Retelling of events by persons who didn't participate in nor witness the events\n </li>\n\n </ul>\n <p><b>\n <font color="#008080" onmouseover="FP_popUpMsg('For example: a letter from Charles Garlick, Sep 1862:\sr\sn"...I write you this by the hand of my friend Bardsey Gilbert who is taking care of me to let you know where I am and how I am getting along. I was unlucky enough the day of the battle to get a bullet in my body..."\sr\sn\sr\sn\sr\snOne can make some assertions on the presence of Charles Garlick and his regiment in the "battle" (Antietam) and his aquaintance with Bardsey Gilbert.\sr\sn\sr\snThis is a PRIMARY SOURCE.\sr\sn\sr\snLetter Sep 28, 1862 Sharpsburg: The Charles D. Garlick Letters.; MS 007; box: 1 item: 4; Western Connecticut State University.')">Primary sources</font </b></p>\n </b>\n <ul>\n <li>First-hand or contemporary accounts (letters, diaries, \n correspondence, municipal records)</li>\n <li>Photographs, maps, sketches, etc. </li>\n\n <liAudio and video </li>\n </ul>\n <blockquote>\n <blockquote>\n <p>\n <img border="0" src="http://archives.library.wcsu.edu/relatedObjects/searchButton.gif" width="75" height="45"><b><font color="#808080">Helpful links: \n </font></b></p>\n <ul>\n <li>\n\n <a href="http://libguides.wcsu.edu/content.php?pid=115419">When to use books and articles.</a></li>\n \n\n <li>\n <a href="http://libguides.wcsu.edu/content.php?pid=115425&sid=997129">Evaluate & Synthesize the Information You Find</a>\n </li>\n </ul>\n </blockquote>\n </blockquote>\n</blockquote>\n<p><i>Good research relies on good sources and credible sources; this means you \nneed primary sources. </i></p>\n\n<p><i>You must also consider the context of your sources. A popular U.S. \nbook about Communism from the 1950s may not give one the most objective \nperspective on Communism but it will give insight on period opinion. \nSimilarly, a letter documenting wrongs by a corporation written by a recently \nfired employee might need to substantiated before it was taken as fact but it \nwill provide insight on that employee's state of mind. </i></p>\n<p> </p><hr><b>\n<p><b><font size="4">Access to resources... </font></b></p>\n<blockquote>\n <b><font color="#008080">Secondary sources\n</font></b>\n </b>\n <ul>\n\n <li><a href="http://www.consuls.org">CONSULS</a> for books and other \n media. CONSULS lists what's on our shelves and what's on the other \n CSUs and State Library's shelves.</li>\n </ul>\n <blockquote>\n <blockquote>\n <p>\n <img border="0" src="http://archives.library.wcsu.edu/relatedObjects/searchButton.gif" width="75" height="45"><b><font color="#808080">Helpful links: \n </font></b></p>\n\n <ul>\n<li>\n <a href="http://libguides.wcsu.edu/content.php?pid=115427">How to find books on the shelf</a>\n \n </li>\n <li>\n <a href="http://libguides.wcsu.edu/content.php?pid=115427&sid=996856">Library of Congress Classification System</a></li>\n <li>\n <a href="http://firstsearch.oclc.org/WebZ/LogDbChange?next=html/search.html:dbchoice=1:sessionid=fsapp6-51732-gmgy7q0d-n66wqy:entitypagenum=2:0:dbname=WorldCat">Find books at other libraries on WorldCat</a>\n\n </li>\n </ul>\n </blockquote>\n </blockquote>\n <ul>\n <li><a href="http://library.wcsu.edu/web/resources/databases/">Articles</a> \n Scholarly journals, book reviews, Newspapers. Many of these \n articles are available electronically but some are physically on the \n shelves of the library.</li>\n\n </ul>\n <blockquote>\n <blockquote>\n <p>\n <img border="0" src="http://archives.library.wcsu.edu/relatedObjects/searchButton.gif" width="75" height="45"><b><font color="#808080">Helpful links: \n </font></b></p>\n <ul>\n <li>\n <a href="http://libguides.wcsu.edu/content.php?pid=115425&sid=997103">Identify Main Concepts in Your Question and Create Search Statements</a>\n\n </li>\n <li>\n <a href="http://libguides.wcsu.edu/content.php?pid=115425&sid=997126">Using Databases to Find Articles</a>\n </li>\n <li>\n <a href="http://libguides.wcsu.edu/content.php?pid=54175&sid=462282">History Databases at WCSU</a>. Try\n <a href="http://www.jstor.org">Jstor</a>,\n <a href="http://web.ebscohost.com/ehost/search/basic?sid=3f7a8447-11cb-4282-ab02-69a3a6d7cec5%40sessionmgr12&vid=1&hid=25">Academic Search Premier</a> and\n New York Times Historical</li>\n\n </ul>\n </blockquote>\n </blockquote>\n</blockquote>\n <p> </p>\n <blockquote>\n <ul>\n <li><a href="http://libguides.wcsu.edu/ask">Ask \n a reference librarian</a> for encyclopedias or dictionaries available \n for your topic</li>\n\n </ul>\n <blockquote>\n <blockquote>\n <p>\n <img border="0" src="http://archives.library.wcsu.edu/relatedObjects/searchButton.gif" width="75" height="45"><b><font color="#808080">Helpful links: \n </font></b></p>\n <ul>\n\n <li>\n <a href="http://libanswers.wcsu.edu/a.php?qid=19195" show="new">Using Interlibrary Loan</a>\n </li>\n </ul>\n </blockquote>\n </blockquote>\n <ul>\n\n <li>Web sources </li>\n </ul>\n <blockquote>\n <blockquote>\n <p>\n <img border="0" src="http://archives.library.wcsu.edu/relatedObjects/searchButton.gif" width="75" height="45"><b><font color="#808080">Helpful links: \n </font></b></p>\n <ul>\n <li><a href="http://www.googleguide.com/">How to use Google</a></li>\n\n <li>\n <a href="http://libguides.wcsu.edu/content.php?pid=115425&sid=997129">Evaluating Information Sources</a>\n </li>\n </ul>\n </blockquote>\n </blockquote>\n <b>\n <p><b><font color="#008080">Primary sources</font> </b></p></b>\n\n <ul>\n <li><a href="http://www.consuls.org">CONSULS</a>,\n <a href="http://libguides.wcsu.edu/databases">Articles</a>. \n Sometimes first-hand or contemporary accounts are contained in books and \n journals</li>\n <li>Archives and special collections. Most universities, colleges, \n towns, cities, historical societies and museums have some sort of archive. These \n archives many times contain and will allow you to view unpublished \n letters, photos, media, corporate records, municipal records. Many \n of these archives, like the one at\n <a href="archives.library.wcsu.edu/">WCSU</a>, \n have their holdings listed on the Web. </li>\n\n </ul>\n</blockquote>\n<p> </p>\n <blockquote>\n <blockquote>\n <blockquote>\n <p>\n <img border="0" src="http://archives.library.wcsu.edu/relatedObjects/searchButton.gif" width="75" height="45"><b><font color="#808080">Helpful links: \n </font></b></p>\n <ul>\n\n <li>\n <a href="http://archives.library.wcsu.edu/#About">\n How to use the WCSU Archives - Click the "How to" tab</a></li>\n </ul>\n </blockquote>\n </blockquote>\n </blockquote>\n<b><hr>\n<p><font size="4"><b>Strategy</b></font><b><font size="4">... </font></b></p>\n\n<blockquote><b><font color="#008080">Time </font></b></b>\n <ul>\n <li><b>Spend 15 minutes on a computer</b> "Google-ing" your topic and \n looking at CONSULS to see if you find anything pertinent. If \n you can't find anything, maybe rethink your topic based on what you \n do find.</li>\n <li><b>Take notes on what you find</b>. Print out catalog records \n and write what you find in that source on the back or staple notes \n together with catalog record printouts. This will help when making footnotes and assembling your \n bibliography. Estimate the amount of time you will need to spend based \n on how long it takes you to find and annotate one secondary source and \n one primary source. Then you should budget your time accordingly.</li>\n\n <li>When Xeroxing portions from books, make a copy of the book's title \n page and staple it to the copies. This will save you time and \n effort.</li>\n </ul>\n <p><b><font color="#008080">Other people have likely written on your topic</font></b></p>\n <ul>\n <li><b>USE\nBIBLIOGRAPHIES/FOOTNOTES</b> from secondary sources to find other secondary \n sources and primary sources. This will save you LOTS of time, and \n likely the writer of the piece you are looking at did the same thing.</li>\n\n </ul>\n <p><font color="#008080"><b>Your research should go from very general to \n specific</b></font></p><img src="http://archives.library.wcsu.edu/images/methods.jpg" width="500" />\n</blockquote><b>\n<div id="navbar"></div>\n</body>\n</html>
<html>\n<div id="content">\n<img src="http://archives.library.wcsu.edu/relatedObjects/top.jpg" align="top"/>\n</div>\n</html>\n!!!Main Menu\n[[About]]\n[[Archival Collections List]]\n[[Digital Collections]]\n[[Resource Links]]\n[[Search Collections|http://library.wcsu.edu/cao/search]]\n[[Request copies]]\n[[Donations]]\n[[CT Archives Online (CAO)|http://library.wcsu.edu/cao]]\n[[DSpace @ WestConn|http://library.wcsu.edu/dspace/community-list]]\n----\n!!!Other Items\n[[Staff]]\n[[News]]\n[[Features]]\n[[A&SC Subject Guides - under development|http://archives.library.wcsu.edu/bibliographies/bibblywiki.html]]\n[[WCSU's Collections- On a map!|http://archives.library.wcsu.edu/maps/WCSUArchivesMap.html]]\n[[History Libguide|http://libguides.wcsu.edu/history]]\n[[WCSU Slide show|http://archives.library.wcsu.edu/slideshow/test1.html]]\n[[Haas 40 years|http://archives.library.wcsu.edu/Haas]]\n[[Warner WWII|http://archives.library.wcsu.edu/WarnerSlideShow/]]\n----\n!!![img[http://archives.library.wcsu.edu/relatedObjects/haasSculpture.gif]][[Library Home|http://library.wcsu.edu]]\n!!![img[http://archives.library.wcsu.edu/relatedObjects/whiteCupola.gif]][[University Home|http://www.wcsu.edu]]\n\n''<<search>>''\n\n[img[http://archives.library.wcsu.edu/relatedObjects/oldLogo.jpg]]\n<script>\nif (!zw.loggedIn) return "[[Login|/archives/login]]"\n</script>\n
Powered by [[ZiddlyWiki|http://ziddlywiki.com]]\n
/***\n| Name:|RenameTagsPlugin|\n| Description:|Allows you to easily rename or delete tags across multiple tiddlers|\n| Version:|3.0 ($Rev: 1845 $)|\n| Date:|$Date: 2007-03-16 15:19:22 +1000 (Fri, 16 Mar 2007) $|\n| Source:|http://mptw.tiddlyspot.com/#RenameTagsPlugin|\n| Author:|Simon Baird <simon.baird@gmail.com>|\n| License|http://mptw.tiddlyspot.com/#TheBSDLicense|\nRename a tag and you will be prompted to rename it in all its tagged tiddlers.\n***/\n//{{{\nconfig.renameTags = {\n\n prompts: {\n rename: "Rename the tag '%0' to '%1' in %2 tidder%3?",\n remove: "Remove the tag '%0' from %1 tidder%2?"\n },\n\n removeTag: function(tag,tiddlers) {\n store.suspendNotifications();\n for (var i=0;i<tiddlers.length;i++) {\n store.setTiddlerTag(tiddlers[i].title,false,tag);\n }\n store.resumeNotifications();\n store.notifyAll();\n },\n\n renameTag: function(oldTag,newTag,tiddlers) {\n store.suspendNotifications();\n for (var i=0;i<tiddlers.length;i++) {\n store.setTiddlerTag(tiddlers[i].title,false,oldTag); // remove old\n store.setTiddlerTag(tiddlers[i].title,true,newTag); // add new\n }\n store.resumeNotifications();\n store.notifyAll();\n },\n\n storeMethods: {\n\n saveTiddler_orig_renameTags: TiddlyWiki.prototype.saveTiddler,\n\n saveTiddler: function(title,newTitle,newBody,modifier,modified,tags,fields) {\n if (title != newTitle) {\n var tagged = this.getTaggedTiddlers(title);\n if (tagged.length > 0) {\n // then we are renaming a tag\n if (confirm(config.renameTags.prompts.rename.format([title,newTitle,tagged.length,tagged.length>1?"s":""])))\n config.renameTags.renameTag(title,newTitle,tagged);\n\n if (!this.tiddlerExists(title) && newBody == "")\n // dont create unwanted tiddler\n return null;\n }\n }\n return this.saveTiddler_orig_renameTags(title,newTitle,newBody,modifier,modified,tags,fields);\n },\n\n removeTiddler_orig_renameTags: TiddlyWiki.prototype.removeTiddler,\n\n removeTiddler: function(title) {\n var tagged = this.getTaggedTiddlers(title);\n if (tagged.length > 0)\n if (confirm(config.renameTags.prompts.remove.format([title,tagged.length,tagged.length>1?"s":""])))\n config.renameTags.removeTag(title,tagged);\n return this.removeTiddler_orig_renameTags(title);\n }\n\n },\n\n init: function() {\n merge(TiddlyWiki.prototype,this.storeMethods);\n }\n}\n\nconfig.renameTags.init();\n\n//}}}
<<timeline created >>
/***\n''NestedSlidersPlugin for TiddlyWiki version 1.2.x and 2.0''\n^^author: Eric Shulman\nsource: http://www.TiddlyTools.com/#NestedSlidersPlugin\nlicense: [[Creative Commons Attribution-ShareAlike 2.5 License|http://creativecommons.org/licenses/by-sa/2.5/]]^^\n\nQuickly make any tiddler content into an expandable 'slider' panel, without needing to create a separate tiddler to contain the slider content. Optional syntax allows ''default to open'', ''custom button label/tooltip'' and ''automatic blockquote formatting.''\n\nYou can also 'nest' these sliders as deep as you like (see complex nesting example below), so that expandable 'tree-like' hierarchical displays can be created. This is most useful when converting existing in-line text content to create in-line annotations, footnotes, context-sensitive help, or other subordinate information displays.\n\nFor more details, please click on a section headline below:\n++++!!!!![Configuration]>\nDebugging messages for 'lazy sliders' deferred rendering:\n<<option chkDebugLazySliderDefer>> show debugging alert when deferring slider rendering\n<<option chkDebugLazySliderRender>> show debugging alert when deferred slider is actually rendered\n===\n++++!!!!![Usage]>\nWhen installed, this plugin adds new wiki syntax for embedding 'slider' panels directly into tiddler content. Use {{{+++}}} and {{{===}}} to delimit the slider content. Additional optional syntax elements let you specify\n*default to open\n*cookiename\n*heading level\n*floater (with optional CSS width value)\n*mouse auto rollover\n*custom label/tooltip/accesskey\n*automatic blockquote\n*deferred rendering\nThe complete syntax, using all options, is:\n//{{{\n++++(cookiename)!!!!!^width^*[label=key|tooltip]>...\ncontent goes here\n===\n//}}}\nwhere:\n* {{{+++}}} (or {{{++++}}}) and {{{===}}}^^\nmarks the start and end of the slider definition, respectively. When the extra {{{+}}} is used, the slider will be open when initially displayed.^^\n* {{{(cookiename)}}}^^\nsaves the slider opened/closed state, and restores this state whenever the slider is re-rendered.^^\n* {{{!}}} through {{{!!!!!}}}^^\ndisplays the slider label using a formatted headline (Hn) style instead of a button/link style^^\n* {{{^width^}}} (or just {{{^}}})^^\nmakes the slider 'float' on top of other content rather than shifting that content downward. 'width' must be a valid CSS value (e.g., "30em", "180px", "50%", etc.). If omitted, the default width is "auto" (i.e., fit to content)^^\n* {{{*}}}^^\nautomatically opens/closes slider on "rollover" as well as when clicked^^\n* {{{[label=key|tooltip]}}}^^\nuses custom label/tooltip/accesskey. {{{=key}}} and {{{|tooltip}}} are optional. 'key' is must be a ''single letter only''. Default labels/tootips are: ">" (more) and "<" (less), with no default access key assignment.^^\n* {{{">"}}} //(without the quotes)//^^\nautomatically adds blockquote formatting to slider content^^\n* {{{"..."}}} //(without the quotes)//^^\ndefers rendering of closed sliders until the first time they are opened. //Note: deferred rendering may produce unexpected results in some cases. Use with care.//^^\n\n//Note: to make slider definitions easier to read and recognize when editing a tiddler, newlines immediately following the {{{+++}}} 'start slider' or preceding the {{{===}}} 'end slider' sequence are automatically supressed so that excess whitespace is eliminated from the output.//\n===\n++++!!!!![Examples]>\nsimple in-line slider: \n{{{\n+++\n content\n===\n}}}\n+++\n content\n===\n----\nuse a custom label and tooltip: \n{{{\n+++[label|tooltip]\n content\n===\n}}}\n+++[label|tooltip]\n content\n===\n----\ncontent automatically blockquoted: \n{{{\n+++>\n content\n===\n}}}\n+++>\n content\n===\n----\nall options combined //(default open, cookie, heading, sized floater, rollover, label/tooltip/key, blockquoted, deferred)//\n{{{\n++++(testcookie)!!!^30em^*[label=Z|click or press Alt-Z to open]>...\n content\n===\n}}}\n++++(testcookie)!!!^30em^*[label=Z|click or press Alt-Z to open]>...\n content\n===\n----\ncomplex nesting example:\n{{{\n+++^[get info...=I|click for information or press Alt-I]\n put some general information here, plus a floating slider with more specific info:\n +++^10em^[view details...|click for details]\n put some detail here, which could include a rollover with a +++^25em^*[glossary definition]explaining technical terms===\n ===\n===\n}}}\n+++^[get info...=I|click for information or press Alt-I]\n put some general information here, plus a floating slider with more specific info:\n +++^10em^[view details...|click for details]\n put some detail here, which could include a rollover with a +++^25em^*[glossary definition]explaining technical terms===\n ===\n===\n----\nnested floaters\n>menu: <<tiddler NestedSlidersExample>>\n(see [[NestedSlidersExample]] for definition)\n----\n===\n!!!!!Installation\n<<<\nimport (or copy/paste) the following tiddlers into your document:\n''NestedSlidersPlugin'' (tagged with <<tag systemConfig>>)\n<<<\n!!!!!Revision History\n<<<\n''2006.05.11 - 1.9.0'' added optional '^width^' syntax for floating sliders and '=key' syntax for setting an access key on a slider label\n''2006.05.09 - 1.8.0'' in onClickNestedSlider(), when showing panel, set focus to first child input/textarea/select element\n''2006.04.24 - 1.7.8'' in adjustSliderPos(), if floating panel is contained inside another floating panel, subtract offset of containing panel to find correct position\n''2006.02.16 - 1.7.7'' corrected deferred rendering to account for use-case where show/hide state is tracked in a cookie\n''2006.02.15 - 1.7.6'' in adjustSliderPos(), ensure that floating panel is positioned completely within the browser window (i.e., does not go beyond the right edge of the browser window)\n''2006.02.04 - 1.7.5'' add 'var' to unintended global variable declarations to avoid FireFox 1.5.0.1 crash bug when assigning to globals\n''2006.01.18 - 1.7.4'' only define adjustSliderPos() function if it has not already been provided by another plugin. This lets other plugins 'hijack' the function even when they are loaded first.\n''2006.01.16 - 1.7.3'' added adjustSliderPos(place,btn,panel,panelClass) function to permit specialized logic for placement of floating panels. While it provides improved placement for many uses of floating panels, it exhibits a relative offset positioning error when used within *nested* floating panels. Short-term workaround is to only adjust the position for 'top-level' floaters.\n''2006.01.16 - 1.7.2'' added button property to slider panel elements so that slider panel can tell which button it belongs to. Also, re-activated and corrected animation handling so that nested sliders aren't clipped by hijacking Slider.prototype.stop so that "overflow:hidden" can be reset to "overflow:visible" after animation ends\n''2006.01.14 - 1.7.1'' added optional "^" syntax for floating panels. Defines new CSS class, ".floatingPanel", as an alternative for standard in-line ".sliderPanel" styles.\n''2006.01.14 - 1.7.0'' added optional "*" syntax for rollover handling to show/hide slider without requiring a click (Based on a suggestion by tw4efl)\n''2006.01.03 - 1.6.2'' When using optional "!" heading style, instead of creating a clickable "Hn" element, create an "A" element inside the "Hn" element. (allows click-through in SlideShowPlugin, which captures nearly all click events, except for hyperlinks)\n''2005.12.15 - 1.6.1'' added optional "..." syntax to invoke deferred ('lazy') rendering for initially hidden sliders\nremoved checkbox option for 'global' application of lazy sliders\n''2005.11.25 - 1.6.0'' added optional handling for 'lazy sliders' (deferred rendering for initially hidden sliders)\n''2005.11.21 - 1.5.1'' revised regular expressions: if present, a single newline //preceding// and/or //following// a slider definition will be suppressed so start/end syntax can be place on separate lines in the tiddler 'source' for improved readability. Similarly, any whitespace (newlines, tabs, spaces, etc.) trailing the 'start slider' syntax or preceding the 'end slider' syntax is also suppressed.\n''2005.11.20 - 1.5.0'' added (cookiename) syntax for optional tracking and restoring of slider open/close state\n''2005.11.11 - 1.4.0'' added !!!!! syntax to render slider label as a header (Hn) style instead of a button/link style\n''2005.11.07 - 1.3.0'' removed alternative syntax {{{(((}}} and {{{)))}}} (so they can be used by other\nformatting extensions) and simplified/improved regular expressions to trim multiple excess newlines\n''2005.11.05 - 1.2.1'' changed name to NestedSlidersPlugin\nmore documentation\n''2005.11.04 - 1.2.0'' added alternative character-mode syntax {{{(((}}} and {{{)))}}}\ntweaked "eat newlines" logic for line-mode {{{+++}}} and {{{===}}} syntax\n''2005.11.03 - 1.1.1'' fixed toggling of default tooltips ("more..." and "less...") when a non-default button label is used\ncode cleanup, added documentation\n''2005.11.03 - 1.1.0'' changed delimiter syntax from {{{(((}}} and {{{)))}}} to {{{+++}}} and {{{===}}}\nchanged name to EasySlidersPlugin\n''2005.11.03 - 1.0.0'' initial public release\n<<<\n!!!!!Credits\n<<<\nThis feature was implemented by EricShulman from [[ELS Design Studios|http:/www.elsdesign.com]] with initial research and suggestions from RodneyGomes, GeoffSlocock, and PaulPetterson.\n<<<\n!!!!!Code\n***/\n//{{{\nversion.extensions.nestedSliders = {major: 1, minor: 9, revision: 0, date: new Date(2006,5,11)};\n//}}}\n\n//{{{\n// options for deferred rendering of sliders that are not initially displayed\nif (config.options.chkDebugLazySliderDefer==undefined) config.options.chkDebugLazySliderDefer=false;\nif (config.options.chkDebugLazySliderRender==undefined) config.options.chkDebugLazySliderRender=false;\n\n// default styles for 'floating' class\nsetStylesheet(".floatingPanel { position:absolute; z-index:10; padding:0.5em; margin:0em; \s\n background-color:#eee; color:#000; border:1px solid #000; text-align:left; }","floatingPanelStylesheet");\n//}}}\n\n//{{{\nconfig.formatters.push( {\n name: "nestedSliders",\n match: "\s\sn?\s\s+{3}",\n terminator: "\s\ss*\s\s={3}\s\sn?",\n lookahead: "\s\sn?\s\s+{3}(\s\s+)?(\s\s([^\s\s)]*\s\s))?(\s\s!*)?(\s\s^(?:[^\s\s^\s\s*\s\s[\s\s>]*\s\s^)?)?(\s\s*)?(\s\s[[^\s\s]]*\s\s])?(\s\s>)?(\s\s.\s\s.\s\s.)?\s\ss*",\n handler: function(w)\n {\n var lookaheadRegExp = new RegExp(this.lookahead,"mg");\n lookaheadRegExp.lastIndex = w.matchStart;\n var lookaheadMatch = lookaheadRegExp.exec(w.source)\n if(lookaheadMatch && lookaheadMatch.index == w.matchStart)\n {\n // location for rendering button and panel\n var place=w.output;\n\n // default to closed, no cookie, no accesskey\n var show="none"; var title=">"; var tooltip="show"; var cookie=""; var key="";\n\n // extra "+", default to open\n if (lookaheadMatch[1])\n { show="block"; title="<"; tooltip="hide"; }\n\n // cookie, use saved open/closed state\n if (lookaheadMatch[2]) {\n cookie=lookaheadMatch[2].trim().slice(1,-1);\n cookie="chkSlider"+cookie;\n if (config.options[cookie]==undefined)\n { config.options[cookie] = (show=="block") }\n if (config.options[cookie])\n { show="block"; title="<"; tooltip="hide"; }\n else\n { show="none"; title=">"; tooltip="show"; }\n }\n\n // parse custom label/tooltip/accesskey: [label=X|tooltip]\n if (lookaheadMatch[6]) {\n title = lookaheadMatch[6].trim().slice(1,-1);\n var pos=title.indexOf("|");\n if (pos!=-1) { tooltip = title.substr(pos+1,title.length); title=title.substr(0,pos); }\n if (title.substr(title.length-2,1)=="=") { key=title.substr(title.length-1,1); title=title.slice(0,-2); }\n if (pos==-1) tooltip += " "+title; // default tooltip: "show/hide <title>"\n }\n\n // create the button\n if (lookaheadMatch[3]) { // use "Hn" header format instead of button/link\n var lvl=(lookaheadMatch[3].length>6)?6:lookaheadMatch[3].length;\n var btn = createTiddlyElement(createTiddlyElement(place,"h"+lvl,null,null,null),"a",null,null,title);\n btn.onclick=onClickNestedSlider;\n btn.setAttribute("href","javascript:;");\n btn.setAttribute("title",tooltip);\n }\n else\n var btn = createTiddlyButton(place,title,tooltip,onClickNestedSlider);\n btn.sliderCookie = cookie; // save the cookiename (if any) in the button object\n btn.keyparam=key; // save the access key letter ("" if none)\n if (key.length) {\n btn.setAttribute("accessKey",key); // init access key\n btn.onfocus=function(){this.setAttribute("accessKey",this.keyparam);}; // **reclaim** access key on focus\n }\n\n // "non-click" MouseOver open/close slider\n if (lookaheadMatch[5]) btn.onmouseover=onClickNestedSlider;\n\n // create slider panel\n var panelClass=lookaheadMatch[4]?"floatingPanel":"sliderPanel";\n var panel=createTiddlyElement(place,"div",null,panelClass,null);\n panel.style.display = show;\n if (lookaheadMatch[4] && lookaheadMatch[4].length>2) panel.style.width=lookaheadMatch[4].slice(1,-1); // custom width\n panel.button = btn; // so the slider panel know which button it belongs to\n btn.sliderPanel=panel;\n\n // render slider (or defer until shown) \n w.nextMatch = lookaheadMatch.index + lookaheadMatch[0].length;\n if ((show=="block")||!lookaheadMatch[8]) {\n // render now if panel is supposed to be shown or NOT deferred rendering\n w.subWikify(lookaheadMatch[7]?createTiddlyElement(panel,"blockquote"):panel,this.terminator);\n // align slider/floater position with button\n adjustSliderPos(place,btn,panel,panelClass);\n }\n else {\n var src = w.source.substr(w.nextMatch);\n var endpos=findMatchingDelimiter(src,"+++","===");\n panel.setAttribute("raw",src.substr(0,endpos));\n panel.setAttribute("blockquote",lookaheadMatch[7]?"true":"false");\n panel.setAttribute("rendered","false");\n w.nextMatch += endpos+3;\n if (w.source.substr(w.nextMatch,1)=="\sn") w.nextMatch++;\n if (config.options.chkDebugLazySliderDefer) alert("deferred '"+title+"':\sn\sn"+panel.getAttribute("raw"));\n }\n }\n }\n }\n)\n\n// TBD: ignore 'quoted' delimiters (e.g., "{{{+++foo===}}}" isn't really a slider)\nfunction findMatchingDelimiter(src,starttext,endtext) {\n var startpos = 0;\n var endpos = src.indexOf(endtext);\n // check for nested delimiters\n while (src.substring(startpos,endpos-1).indexOf(starttext)!=-1) {\n // count number of nested 'starts'\n var startcount=0;\n var temp = src.substring(startpos,endpos-1);\n var pos=temp.indexOf(starttext);\n while (pos!=-1) { startcount++; pos=temp.indexOf(starttext,pos+starttext.length); }\n // set up to check for additional 'starts' after adjusting endpos\n startpos=endpos+endtext.length;\n // find endpos for corresponding number of matching 'ends'\n while (startcount && endpos!=-1) {\n endpos = src.indexOf(endtext,endpos+endtext.length);\n startcount--;\n }\n }\n return (endpos==-1)?src.length:endpos;\n}\n//}}}\n\n//{{{\nwindow.onClickNestedSlider=function(e)\n{\n if (!e) var e = window.event;\n var theTarget = resolveTarget(e);\n var theLabel = theTarget.firstChild.data;\n var theSlider = theTarget.sliderPanel\n var isOpen = theSlider.style.display!="none";\n // if using default button labels, toggle labels\n if (theLabel==">") theTarget.firstChild.data = "<";\n else if (theLabel=="<") theTarget.firstChild.data = ">";\n // if using default tooltips, toggle tooltips\n if (theTarget.getAttribute("title")=="show")\n theTarget.setAttribute("title","hide");\n else if (theTarget.getAttribute("title")=="hide")\n theTarget.setAttribute("title","show");\n if (theTarget.getAttribute("title")=="show "+theLabel)\n theTarget.setAttribute("title","hide "+theLabel);\n else if (theTarget.getAttribute("title")=="hide "+theLabel)\n theTarget.setAttribute("title","show "+theLabel);\n // deferred rendering (if needed)\n if (theSlider.getAttribute("rendered")=="false") {\n if (config.options.chkDebugLazySliderRender)\n alert("rendering '"+theLabel+"':\sn\sn"+theSlider.getAttribute("raw"));\n var place=theSlider;\n if (theSlider.getAttribute("blockquote")=="true")\n place=createTiddlyElement(place,"blockquote");\n wikify(theSlider.getAttribute("raw"),place);\n theSlider.setAttribute("rendered","true");\n }\n // show/hide the slider\n if(config.options.chkAnimate)\n anim.startAnimating(new Slider(theSlider,!isOpen,e.shiftKey || e.altKey,"none"));\n else\n theSlider.style.display = isOpen ? "none" : "block";\n // if showing panel, set focus to first 'focus-able' element in panel\n if (theSlider.style.display!="none") {\n var ctrls=theSlider.getElementsByTagName("*");\n for (var c=0; c<ctrls.length; c++) {\n var t=ctrls[c].tagName.toLowerCase();\n if (t=="input" || t=="textarea" || t=="select")\n { ctrls[c].focus(); break; }\n }\n }\n if (this.sliderCookie && this.sliderCookie.length)\n { config.options[this.sliderCookie]=!isOpen; saveOptionCookie(this.sliderCookie); }\n // align slider/floater position with target button\n adjustSliderPos(theSlider.parentNode,theTarget,theSlider,theSlider.className);\n return false;\n}\n\n// hijack animation handler 'stop' handler so overflow is visible after animation has completed\nSlider.prototype.coreStop = Slider.prototype.stop;\nSlider.prototype.stop = function() { this.coreStop(); this.element.style.overflow = "visible"; }\n\n// adjust panel position based on button position\nif (window.adjustSliderPos==undefined) window.adjustSliderPos=function(place,btn,panel,panelClass) {\n if (panelClass=="floatingPanel") {\n var left=0;\n var top=btn.offsetHeight; \n if (place.style.position!="relative") {\n var left=findPosX(btn);\n var top=findPosY(btn)+btn.offsetHeight;\n var p=place; while (p && p.className!='floatingPanel') p=p.parentNode;\n if (p) { left-=findPosX(p); top-=findPosY(p); }\n }\n if (left+panel.offsetWidth > getWindowWidth()) left=getWindowWidth()-panel.offsetWidth-10;\n panel.style.left=left+"px"; panel.style.top=top+"px";\n }\n}\n\nfunction getWindowWidth() {\n if(document.width!=undefined)\n return document.width; // moz (FF)\n if(document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) )\n return document.documentElement.clientWidth; // IE6\n if(document.body && ( document.body.clientWidth || document.body.clientHeight ) )\n return document.body.clientWidth; // IE4\n if(window.innerWidth!=undefined)\n return window.innerWidth; // IE - general\n return 0; // unknown\n}\n//}}}
As of July 2010\n<html>\n<table>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2705248">The Ed letters : memories of a New England boyhood / Edwin and Cliff Ashley edited by Diane deManbey Duebber</a>\n</td>\n<td>Ashley, Edwin, 1913-</td>\n<td>New Bedford, Mass. : Spinner Publications, c2001</td>\n<td>b27052485</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2874389">Inquiry in education / Mark W. Aulls, Bruce M. Shore</a>\n</td>\n<td>Aulls, Mark W., 1942-</td>\n<td>New York, NY : Lawerence Erlbaum Associates, c2008</td>\n<td>b28743891</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2919502">Benjamin Britten s the young person s guide to the orchestra : teaching strategies for the classroom / by Wesley Ball</a>\n</td>\n<td>Ball, Wesley</td>\n<td>Milwaukee, Wi. : Hal Leonard Corporation, 2005</td>\n<td>b29195020</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3040346">The Nutcracker Suite: Active Listening Strategies</a>\n</td>\n<td>Ball, Wesley</td>\n<td>Hal Leonard Music Publishing 2007</td>\n<td>b30403467</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1295214">The Communist collapse in Indonesia [by] Arnold C. Brackman</a>\n</td>\n<td>Brackman, Arnold C</td>\n<td>New York, Norton [1969]</td>\n<td>b1295214x</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1429057">The search for the gold of Tutankhamen</a>\n</td>\n<td>Brackman, Arnold C</td>\n<td>London, Robert Hale Limited [1978, c1976]</td>\n<td>b14290571</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2534376">The last emperor / by Arnold C. Brackman</a>\n</td>\n<td>Brackman, Arnold C</td>\n<td>New York : Carroll & Graf, 1991, c1975</td>\n<td>b25343762</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1461995">Fire in the crucible : the alchemy of creative genius</a>\n</td>\n<td>Briggs, John</td>\n<td>New York : St. Martin s Press, 1988</td>\n<td>b14619957</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1566618">Fractals : the patterns of chaos : a new aesthetic of art, science, and nature / John Briggs</a>\n</td>\n<td>Briggs, John, 1945-</td>\n<td>New York : Simon & Schuster, c1992</td>\n<td>b15666189</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2874378">Trickster tales / by J.P. Briggs</a>\n</td>\n<td>Briggs, John, 1945-</td>\n<td>Waterbury, CT : Fine Tooth Press, 2005</td>\n<td>b28743787</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2874379">Seven life lessons of chaos : spiritual wisdom from the science of change / John Briggs and F. David Peat</a>\n</td>\n<td>Briggs, John, 1945-</td>\n<td>New York : HarperPerennial, 2000</td>\n<td>b28743799</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2908278">Entangled landscapes : stories and poems about the mind in nature / J.P. Briggs & James R. Scrimgeour</a>\n</td>\n<td>Briggs, John, 1945-</td>\n<td>Columbus, Ohio : Pudding House Publications, c2003</td>\n<td>b2908278x</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2874382">Dark remedy : the impact of Thalidomide and its revival as a vital medicine / Rock Brynner and Trent Stephens</a>\n</td>\n<td>Brynner, Rock, 1946-</td>\n<td>New York : Basic Books, c2001</td>\n<td>b28743829</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2874383">Empire & odyssey : the Brynners in Far East Russia and beyond / Rock Brynner</a>\n</td>\n<td>Brynner, Rock, 1946-</td>\n<td>Hanover, N.H. : Steerforth Press, c2006</td>\n<td>b28743830</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2691414">Essays against ruin / by Brian Clements</a>\n</td>\n<td>Clements, Brian, 1965-</td>\n<td>Huntsville, Tex. : Texas Review Press, 1997</td>\n<td>b26914141</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3037942">And how to end it / Brian Clements</a>\n</td>\n<td>Clements, Brian, 1965-</td>\n<td>[Conway, Mass.?] : Quale Press, c2008</td>\n<td>b30379428</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3088656">Disappointed psalms / Brian Clements</a>\n</td>\n<td>Clements, Brian, 1965-</td>\n<td>St. Helena, CA : Meritage Press, c2008</td>\n<td>b30886569</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2725377">Providing efficient, cost-effective, quality health solutions in the 21st century : engaging cutting edge care technologies / by John Robert Coleman, Karen Becky Zagor, Judith Elaine Calhoun</a>\n</td>\n<td>Coleman, John Robert, 1943-</td>\n<td>Springfield, Ill. : Charles C Thomas, c2005</td>\n<td>b27253776</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2295473">Derivatives and equity portfolio management / Bruce M. Collins, Frank J. Fabozzi</a>\n</td>\n<td>Collins, Bruce M</td>\n<td>New Hope, Pa. : Frank J. Fabozzi Associates, c1999</td>\n<td>b22954739</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2907682">Dress thin! : 330 tips : how to use clothing and accessories to flatter your figure / Jeanne M. Dallman and Rose Mary Dallman</a>\n</td>\n<td>Dallman, Jeanne M</td>\n<td>Thousand Oaks, CA : Brainstorm Books, c2005</td>\n<td>b29076821</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2725376">Out of the classroom : observations and investigations in astronomy / Dennis W. Dawson</a>\n</td>\n<td>Dawson, Dennis W</td>\n<td>Australia Pacific Grove, Calif. : Brooks/Cole, c2002</td>\n<td>b27253764</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2874387">Spirits of Texas and New England : over 100 true encounters with the supernatural / Oscar De Los Santos</a>\n</td>\n<td>De Los Santos, Oscar</td>\n<td>Waterbury, CT : Fine Tooth Press, 2004</td>\n<td>b28743878</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2874388">Hardboiled egg / Oscar De Los Santos</a>\n</td>\n<td>De Los Santos, Oscar</td>\n<td>Waterbury, CT : Fine Tooth Press, c2004</td>\n<td>b2874388x</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1311581">The brink : Cuban missile crisis, 1962 / by David Detzer</a>\n</td>\n<td>Detzer, David</td>\n<td>New York : Crowell, c1979</td>\n<td>b13115819</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1319617">Thunder of the captains : the short summer in 1950 / David Detzer</a>\n</td>\n<td>Detzer, David</td>\n<td>New York : Crowell, c1977</td>\n<td>b13196170</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2186170">An Asian tragedy : America and Vietnam / by David Detzer</a>\n</td>\n<td>Detzer, David</td>\n<td>Brookfield, Conn. : Millbrook Press, c1992</td>\n<td>b21861705</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2500731">Allegiance : Fort Sumter, Charleston, and the beginning of the Civil War / David Detzer</a>\n</td>\n<td>Detzer, David</td>\n<td>New York : Harcourt, c2001</td>\n<td>b25007312</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2661250">The brink : Cuban missile crisis, 1962 / by David Detzer</a>\n</td>\n<td>Detzer, David</td>\n<td>London : J.M. Dent, 1980, c1979</td>\n<td>b26612501</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2874390">Donnybrook : the Battle of Bull Run, 1861 / David Detzer</a>\n</td>\n<td>Detzer, David</td>\n<td>Orlando, Fla. : Harcourt, c2004</td>\n<td>b28743908</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2874391">Dissonance : the turbulent days between Fort Sumter and Bull Run / David Detzer</a>\n</td>\n<td>Detzer, David</td>\n<td>Orlando : Harcourt, c2006</td>\n<td>b2874391x</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1012270">We crown them all : an illustrated history of Danbury / William E. Devlin. "Partners in progress" / by Kristin Nord sponsored by the Danbury Scott-Fanton Museum and Historical Society</a>\n</td>\n<td>Devlin, William E., 1949-</td>\n<td>Woodland Hills, Calif. : Windsor Publications, c1984</td>\n<td>b10122709</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2523117">Optimal database marketing : strategy, development, and data mining / Ronald G. Drozdenko, Perry D. Drake</a>\n</td>\n<td>Drozdenko, Ronald G</td>\n<td>Thousand Oaks, Calif. : Sage Pub., c2002</td>\n<td>b25231170</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2520283">Dictionary of developmental biology and embryology / Frank J. Dye</a>\n</td>\n<td>Dye, Frank J. (Frank John), 1942-</td>\n<td>New York : Wiley-Liss, c2002</td>\n<td>b25202832</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2454391">Human life before birth / Frank J. Dye</a>\n</td>\n<td>Dye, Frank J. (Frank John), 1942-</td>\n<td>Amsterdam : Harwood Academic, c2000</td>\n<td>b24543913</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1021701">Smarter money : an investment game plan for those who made it and want to keep it / Frank J. Fabozzi and Stephen Feldman</a>\n</td>\n<td>Fabozzi, Frank J</td>\n<td>Chicago, IL : Probus Pub. Co., c1985</td>\n<td>b10217010</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1028430">New England</a>\n</td>\n<td>Finch, Grant E</td>\n<td>New York, Rand McNally, c1933</td>\n<td>b10284308</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2628606">The growth of anti-immigrant parties in Western Europe / Rachel K. Gibson</a>\n</td>\n<td>Gibson, Rachel Kay</td>\n<td>Lewiston : Edwin Mellen Press, c2002</td>\n<td>b26286063</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1665131">3-D geometric origami : modular polyhedra / Rona Gurkewitz and Bennett Arnstein</a>\n</td>\n<td>Gurkewitz, Rona</td>\n<td>New York : Dover Publications, 1995</td>\n<td>b16651315</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2874591">Multimodular origami polyhedra : archimedeans, buckyballs, and duality / Rona Gurkewitz and Bennett Arnstein photographs by Bill Quinnell</a>\n</td>\n<td>Gurkewitz, Rona</td>\n<td>Mineola, N.Y. : Dover Publications, c2003</td>\n<td>b28745917</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2876881">The politically incorrect guide to the Constitution / Kevin R.C. Gutzman</a>\n</td>\n<td>Gutzman, Kevin Raeder, 1963-</td>\n<td>Washington, DC : Regnery Pub., c2007</td>\n<td>b28768814</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2877624">Virginia s American Revolution : from dominion to republic, 1776-1840 / Kevin R.C. Gutzman</a>\n</td>\n<td>Gutzman, Kevin Raeder, 1963-</td>\n<td>Lanham : Lexington Books, c2007</td>\n<td>b28776240</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1453496">High nonsensical words : a study of the works of Standish James O Grady / by Edward A. Hagan</a>\n</td>\n<td>Hagan, Edward A</td>\n<td>Troy, N.Y. : Whitston Pub. Co., 1986</td>\n<td>b14534964</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1680398">Leading young children to music / B. Joan E. Haines, Linda L. Gerber</a>\n</td>\n<td>Haines, B. Joan E. (Beatrice Joan Elizabeth), 1920-</td>\n<td>Englewood Cliffs, N.J. : Merrill, c1996</td>\n<td>b1680398x</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2680363">Introduction to population genetics / Richard Halliburton</a>\n</td>\n<td>Halliburton, Richard, 1946-</td>\n<td>Upper Saddle River, NJ : Pearson/Prentice Hall, 2004</td>\n<td>b2680363x</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2840392">Lessons in physics / by Lothrop D. Higgins</a>\n</td>\n<td>Higgins, Lothrop D. (Lothrop Davis), b. 1876</td>\n<td>Boston London : Ginn & Company, c1903</td>\n<td>b28403927</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3051942">Introductory physics</a>\n</td>\n<td>Higgins, Lothrop D. (Lothrop Davis), b. 1876</td>\n<td>Boston, Ginn [c1923]</td>\n<td>b30519421</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1408010">Freddie [by] Charlotte H. Isham</a>\n</td>\n<td>Isham, Charlotte H</td>\n<td>Philadelphia, Franklin Pub. Co. [c1972]</td>\n<td>b14080102</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1203493">Issues and response [compiled by] Lee A. Jacobus</a>\n</td>\n<td>Jacobus, Lee A., comp</td>\n<td>New York, Harcourt, Brace & World [1968]</td>\n<td>b12034939</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2452300">Three faces of love / Rolf M. Johnson</a>\n</td>\n<td>Johnson, Rolf M</td>\n<td>DeKalb, Ill. : Northern Illinois University Press, c2001</td>\n<td>b24523008</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3072442">A defense of an iconic theory of musical expression / by Rolf M. Johnson</a>\n</td>\n<td>Johnson, Rolf M. (Rolf Martin), 1940-</td>\n<td>1976</td>\n<td>b30724429</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2185956">Human, the amazing animal / Kalpataru Kanungo</a>\n</td>\n<td>Kanungo, K. (Kal)</td>\n<td>Bhubaneswar, Orissa : Mayur Publications, c1996</td>\n<td>b21859565</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2423873">Living world of the ocean / Kalpataru Kanungo, with an introduction by Dr. B.K. Behura</a>\n</td>\n<td>Kanungo, Kalpataru</td>\n<td>Bhubaneswar, India : Akankshya Publications, 2000</td>\n<td>b24238739</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3048229">Ancient philosophy and modern science : an inquiry into conceptual links / Kalpataru Kanungo</a>\n</td>\n<td>Kanungo, Kalpataru</td>\n<td>Delhi : Pencraft International, 2009</td>\n<td>b3048229x</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2501299">Poems. Selections;'Selected poems of Charles Henry Kauffman / compiled with an introduction by Lucy Kauffman Braibanti and Ralph Braibanti'</a>\n</td>\n<td>Kauffman, Charles Henry, 1890-1976</td>\n<td>Danbury, Conn. : Western Connecticut State University Foundation, 2001</td>\n<td>b2501299x</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2638735">Your career in psychology : psychology and the law / Tara L. Kuther</a>\n</td>\n<td>Kuther, Tara L</td>\n<td>Belmont, CA : Wadsworth/Thomson Learning, c2004</td>\n<td>b26387359</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2638736">Careers in psychology : opportunities in a changing world / Tara L. Kuther, Robert D. Morgan</a>\n</td>\n<td>Kuther, Tara L</td>\n<td>Belmont, Calif. : Wadsworth/Thomson Learning, c2004</td>\n<td>b26387360</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2874593">Your career in psychology : industrial/organizational psychology / Tara L. Kuther</a>\n</td>\n<td>Kuther, Tara L</td>\n<td>Australia Belmont, CA : Thomson/Wadsworth, c2005</td>\n<td>b28745930</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2874594">Your career in psychology : clinical and counseling psychology / Tara L. Kuther</a>\n</td>\n<td>Kuther, Tara L</td>\n<td>Belmont, CA : Thomson/Wadsworth, c2006</td>\n<td>b28745942</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2874595">Graduate study in psychology : your guide to success / by Tara L. Kuther</a>\n</td>\n<td>Kuther, Tara L</td>\n<td>Springfield, Ill. : Charles C. Thomas Publisher, Ltd., 2004</td>\n<td>b28745954</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3040371">The theory of iconic realism : understanding the arts through cultural context / Jeanne I. Lakatos</a>\n</td>\n<td>Lakatos, Jeanne I</td>\n<td>Lewiston : Edwin Mellen Press, c2008</td>\n<td>b30403716</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1427193">Llibre de l orde de cavalleria. English;'The book of the ordre of chyvalry or knyghthode'</a>\n</td>\n<td>Llull, Ramon, 1232?-1316</td>\n<td>Amsterdam : Theatrum Orbis Terrarum Norwood, N.J. : W. J. Johnson, 1976</td>\n<td>b1427193x</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2598503">Belongingness : the critical variable in the residential treatment of alcoholism / by David Francis Machell</a>\n</td>\n<td>Machell, David Francis</td>\n<td>1984</td>\n<td>b25985036</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2311384">Monet in the 20th century / Paul Hayes Tucker with George T.M. Shackelford and MaryAnne Stevens essays by Romy Golan, John House, and Michael Leja</a>\n</td>\n<td>Monet, Claude, 1840-1926</td>\n<td>London : Royal Academy of Arts Boston : Museum of Fine Arts New Haven : Published in association with Yale University Press, c1998</td>\n<td>b23113844</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2321163">The cheers and the tears : a healthy alternative to the dark side of youth sports today / Shane Murphy</a>\n</td>\n<td>Murphy, Shane M., 1957-</td>\n<td>San Francisco : Jossey-Bass Publishers, c1999</td>\n<td>b23211635</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2874948">The trading athlete : winning the mental game of online trading / Shane Murphy, Doug Hirschhorn</a>\n</td>\n<td>Murphy, Shane M., 1957-</td>\n<td>New York : Wiley, c2001</td>\n<td>b28749480</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2456826">The clockmaker s apprentice</a>\n</td>\n<td>Myhill, Carl S</td>\n<td>Lexington, Mass. : Ginn Pub., 1983</td>\n<td>b24568260</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2725386">The inverted mirror : mythologizing the enemy in France and Germany, 1898-1914 / Michael E. Nolan</a>\n</td>\n<td>Nolan, Michael E</td>\n<td>New York : Berghahn Books, 2005</td>\n<td>b27253867</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2725374">Sun and wind / Standish James O Grady edited by Edward A. Hagan</a>\n</td>\n<td>O Grady, Standish, 1846-1928</td>\n<td>Dublin : University College Dublin Press, 2004</td>\n<td>b27253740</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2613259">Deems Taylor : a biography / James A. Pegolotti with a foreword by Gerard Schwarz</a>\n</td>\n<td>Pegolotti, James A</td>\n<td>Boston : Northeastern University Press, c2003</td>\n<td>b2613259x</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2280343">The creation of jazz : music, race, and culture in urban America / Burton W. Peretti</a>\n</td>\n<td>Peretti, Burton W. (Burton William), 1961-</td>\n<td>Urbana : University of Illinois Press, c1992</td>\n<td>b22803439</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2993742">Lift every voice : the history of African American music / Burton W. Peretti</a>\n</td>\n<td>Peretti, Burton W. (Burton William), 1961-</td>\n<td>Lanham, Md. : Rowman & Littlefield Publishers, c2009</td>\n<td>b29937425</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2490080">Ethics and conflict / Kathleen Ouimet Perrin, James McGhee</a>\n</td>\n<td>Perrin, Kathleen Ouimet</td>\n<td>Thorofare, NJ : SLACK, Inc., c2001</td>\n<td>b24900801</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2740370">Monograph of Podostemum (Podostemaceae) / C. Thomas Philbrick, Alejandro Novelo R</a>\n</td>\n<td>Philbrick, C. Thomas</td>\n<td>Ann Arbor, Mich. : American Society of Plant Taxonomists, c2004</td>\n<td>b27403701</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2906477">Proli Footwear, Inc. [by] Patricia M. Poli [and] Richard J. Proctor</a>\n</td>\n<td>Poli, Patricia M.</td>\n<td>Mason, Ohio, Thomson Learning, 2003</td>\n<td>b29064776</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2770626">When the Purple Mountain burns : a novel / Shouhua Qi</a>\n</td>\n<td>Qi, Shouhua</td>\n<td>San Francisco : Long River Press, c2005</td>\n<td>b27706266</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2874951">Red Guard fantasies and other stories / Shouhua Qi</a>\n</td>\n<td>Qi, Shouhua</td>\n<td>San Francisco : Long River Press, 2007</td>\n<td>b28749510</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2908277">The Swallow Musings on cross-cultural experience and (mis)understanding</a>\n</td>\n<td>Qi, Shouhua</td>\n<td>Shanghai: Shanghai Foreign Language Education Press, [2002]</td>\n<td>b29082778</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2656906">Dictionary for library and information science / Joan M. Reitz</a>\n</td>\n<td>Reitz, Joan M</td>\n<td>Westport, Conn. : Libraries Unlimited, c2004</td>\n<td>b26569061</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1623377">A year as a lion / Eric Roman</a>\n</td>\n<td>Roman, Eric, 1926-</td>\n<td>New York : Stein and Day, 1978</td>\n<td>b16233773</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1673039">Hungary and the victor powers, 1945-1950 / Eric Roman</a>\n</td>\n<td>Roman, Eric, 1926-</td>\n<td>New York : St. Martin s Press, 1996</td>\n<td>b16730392</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2347492">The Stalin years in Hungary / Eric Roman</a>\n</td>\n<td>Roman, Eric, 1926-</td>\n<td>Lewiston, NY : E. Mellen Press, 1999</td>\n<td>b23474920</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2689787">Austria-Hungary & the successor states : a reference guide from the Renaissance to the present / Eric Roman</a>\n</td>\n<td>Roman, Eric, 1926-</td>\n<td>New York : Facts On File, c2003</td>\n<td>b26897878</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2819820">The early mathematics of Leonhard Euler / by C. Edward Sandifer</a>\n</td>\n<td>Sandifer, Charles Edward, 1951-</td>\n<td>Washington, D.C. : Mathematical Association of America, c2007</td>\n<td>b28198207</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2875765">How Euler did it / C. Edward Sandifer</a>\n</td>\n<td>Sandifer, Charles Edward, 1951-</td>\n<td>[Washington, DC] : Mathematical Association of America, c2007</td>\n<td>b28757658</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2874935">When genres collide : selected essays from the 37th Annual Meeting of the Science Fiction Research Association, June 22-25, 2006, White Plains, New York / edited by Thomas J. Morrissey and Oscar De Los Santos</a>\n</td>\n<td>Science Fiction Research Association. National Conference (37th : 2006 : White Plains, N.Y.)</td>\n<td>Waterbury, CT : Fine Tooth Press, c2007</td>\n<td>b28749352</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2705249">Dikel, your hands and other poems James R. Scrimgeour illustrations by Robert D. Sutherland</a>\n</td>\n<td>Scrimgeour, James R</td>\n<td>Peoria, Illinois : Spoon River Poetry Press, 1979</td>\n<td>b27052497</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2875065">Balloons over Stockholm / James R. Scrimgeour</a>\n</td>\n<td>Scrimgeour, James R</td>\n<td>Waterbury, Conn. : Fine Tooth Press, 2005</td>\n<td>b28750652</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2908279">Brushstrokes of the millennium / James R. Scrimgeour</a>\n</td>\n<td>Scrimgeour, James R</td>\n<td>Danbury, Conn. : Western Connecticut State University Foundation, 2004</td>\n<td>b29082791</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2055518">The route, and other poems / by James R. Scrimgeour</a>\n</td>\n<td>Scrimgeour, James R</td>\n<td>Normal, Ill. : Pikestaff Press, c1996</td>\n<td>b20555180</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2875279">Lafayette foster : a heartbeat away from the presidency by Thomas Vogt, Darla Shaw.</a>\n</td>\n<td>Shaw, Darla</td>\n<td>\n</td>\n<td>b2875279x</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2874936">Retelling strategies to improve comprehension : effective hands-on strategies for fiction and nonfiction that help students remember and understand what they read / Darla Shaw</a>\n</td>\n<td>Shaw, Darla, 1938-</td>\n<td>New York : Scholastic, c2005</td>\n<td>b28749364</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2605241">Handbook of parametric and nonparametric statistical procedures / by David J. Sheskin</a>\n</td>\n<td>Sheskin, David</td>\n<td>Boca Raton : Chapman & Hall/CRC, c2004</td>\n<td>b26052416</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2815698">Handbook of parametric and nonparametric statistical procedures / David J. Sheskin</a>\n</td>\n<td>Sheskin, David</td>\n<td>Boca Raton : Chapman & Hall/CRC, c2007</td>\n<td>b28156985</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2875366">Batcats : the United States Air Force 553rd Reconnaissance Wing in Southeast Asia / Jack Sikora, Larry Westin</a>\n</td>\n<td>Sikora, Jack</td>\n<td>Lincoln, NE : IUniverse, Inc., 2003</td>\n<td>b28753665</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2874392">Modular origami polyhedra / Lewis Simon, Bennett Arnstein, and Rona Gurkewitz</a>\n</td>\n<td>Simon, Lewis</td>\n<td>Mineola, N.Y. : Dover Publications, 1999</td>\n<td>b28743921</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3044900">Global perspectives in the geography curriculum : reviewing the moral case for geography / Alex Standish</a>\n</td>\n<td>Standish, Alex</td>\n<td>London New York : Routledge, 2009</td>\n<td>b30449005</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2877000">Literary works. Selections;'Deems Taylor : selected writings / selected and annotated by James A. Pegolotti'</a>\n</td>\n<td>Taylor, Deems, 1885-1966</td>\n<td>New York : Routledge, c2007</td>\n<td>b28770006</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2755803">The mechanism of catastrophe : the Turkish pogrom of September 6-7, 1955, and the destruction of the Greek community of Istanbul / Speros Vryonis</a>\n</td>\n<td>Vryonis, Speros, 1928-</td>\n<td>New York, N.Y. : Greekworks.com, c2005</td>\n<td>b27558034</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1659337">The flavor of our lives : Grandma Stacey s memoirs / by M. Stoessel Wahl</a>\n</td>\n<td>Wahl, Stacey</td>\n<td>Baltimore, MD : Gateway Press Ridgefield, CT (1 Huckleberry Ln., Ridgefield 06877) : Book orders to S. Wahl, 1995</td>\n<td>b16593376</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1673334">Reconfiguring truth : postmodernism, science studies, and the search for a new model of knowledge / Steven C. Ward</a>\n</td>\n<td>Ward, Steven C</td>\n<td>Lanham : Rowman & Littlefield Publishers, c1996</td>\n<td>b16733344</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2539703">Modernizing the mind : psychological knowledge and the remaking of society / Steven C. Ward</a>\n</td>\n<td>Ward, Steven C</td>\n<td>Westport, Conn. : Praeger, 2002</td>\n<td>b25397035</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2874376">The last leaf of Harlem : selected and newly discovered fiction by the author of The wedding / Dorothy West edited by Lionel C. Bascom</a>\n</td>\n<td>West, Dorothy, 1907-1998</td>\n<td>New York : St. Martin s Press, 2008</td>\n<td>b28743763</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1514426">Ethnic leadership in a New England community</a>\n</td>\n<td>Westfried, Alex Huxley</td>\n<td>Schenkman Publishing 1981</td>\n<td>b15144264</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2545315">Reinventing the culture of womanhood in America and Brazil : an anthropological perspective : models for the 21st century, 1964-2001 / Alex Huxley Westfried</a>\n</td>\n<td>Westfried, Alex Huxley</td>\n<td>Lanham, Md. : University Press of America, c2002</td>\n<td>b25453154</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2705242">Learning through speaking : 810 performance based language lessonss / Lois Cothran Wolsch, Robert Wolsch</a>\n</td>\n<td>Wolsch, Lois A. Cothran</td>\n<td>[S.l.] : Xlibris Corp., c2001</td>\n<td>b27052424</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2705243">Writers all around us : a search & enjoy mission for parents & teachers / Robert Wolsch & Lois Cothran Wolsch</a>\n</td>\n<td>Wolsch, Robert A</td>\n<td>[S.l.] : Xlibris Corp., c2001</td>\n<td>b27052436</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2705247">Language arts to communication arts : reorganizing for tomorrow s literacy / Robert Wolsch & Lois Cothran Wolsch</a>\n</td>\n<td>Wolsch, Robert A</td>\n<td>[S.l.] : Xlibris Corp., c2001</td>\n<td>b27052473</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2705250">Foibles of phonics : and other roadblocks to literacy / Robert Wolsch and Lois Wolsch</a>\n</td>\n<td>Wolsch, Robert A</td>\n<td>[S.l.] : Xlibris Corp., c2001</td>\n<td>b27052503</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1604496">Workshop on databases for galactic structure : sponsored by Swarthmore College, University of Lausanne, Institute for Space Observations, May 17-19, 1993 : meeting held at Swarthmore College, Swarthmore, Pennsylvania / edited by A.G. Davis Philip, Bernard Hauck, and Arthur R. Upgren</a>\n</td>\n<td>Workshop on Databases for Galactic Structure (1993 : Swarthmore College)</td>\n<td>Schenectady, N.Y. : L. Davis Press, 1993</td>\n<td>b16044964</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2874592">Information security : contemporary cases / Marie A. Wright, John S. Kakalik</a>\n</td>\n<td>Wright, Marie A</td>\n<td>Sudbury, Mass. : Jones and Bartlett, c2007</td>\n<td>b28745929</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2745642">Moving beyond G.I. Jane : women and the U.S. military / Sara L. Zeigler, Gregory G. Gunderson</a>\n</td>\n<td>Zeigler, Sara L</td>\n<td>Lanham, Md. : University Press of America, c2005</td>\n<td>b27456420</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1064183">The gravitational force perpendicular to the galactic plane : a meeting held at the Center for Galactic Astronomy, Western Connecticut State University in Danbury, Connecticut May 19-20, 1989 / edited by A.G. Davis Philip and Phillip K. Lu</a>\n</td>\n<td>\n</td>\n<td>Schenectady, N.Y. : L. Davis Press, 1989</td>\n<td>b1064183x</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1604439">Enduring traditions : the native peoples of New England / edited by Laurie Weinstein foreword by Russell Peters</a>\n</td>\n<td>\n</td>\n<td>Westport, Conn. : Bergin & Garvey, 1994</td>\n<td>b16044393</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2167595">The new Christian right : political and social issues / edited with introductions by Melvin I. Urofsky, Martha May</a>\n</td>\n<td>\n</td>\n<td>New York : Garland Pub., 1996</td>\n<td>b21675958</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2270278">Wives and warriors : women and the military in the United States and Canada / edited by Laurie Weinstein and Christie C. White foreword by Cynthia Enloe</a>\n</td>\n<td>\n</td>\n<td>Westport, Conn. : Bergin & Garvey, 1997</td>\n<td>b22702787</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2301053">Gender camouflage : women and the U.S. military / edited by Francine D Amico and Laurie Weinstein</a>\n</td>\n<td>\n</td>\n<td>New York : New York University Press, c1999</td>\n<td>b23010538</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2375636">Athlete s guide to career planning / Al Petitpas ... [et\nal.]</a>\n</td>\n<td>\n</td>\n<td>Champaign, IL. : Human Kinetics, c1997</td>\n<td>b23756366</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2432179">The practice of social influence in multiple cultures / edited by Wilhelmina Wosinska ... [et al.]</a>\n</td>\n<td>\n</td>\n<td>Mahwah, NJ : Lawrence Erlbaum Associates, 2001</td>\n<td>b24321795</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2456899">Childhood memories : Jewish children who survived the Nazi peril speak / compiled under the auspices of the Holocaust Child Survivors of Connecticut</a>\n</td>\n<td>\n</td>\n<td>[Stamford, CT] : Holocaust Child Survivors of Connecticut, [c1998]</td>\n<td>b24568995</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2496052">Native peoples of the Southwest : negotiating land, water, and ethnicities / edited by Laurie Weinstein</a>\n</td>\n<td>\n</td>\n<td>Westport, Conn. : Bergin & Garvey, 2001</td>\n<td>b24960524</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2639286">One out of ten [videorecording] / producers, Agnes Vertes, Todd Feuer</a>\n</td>\n<td>\n</td>\n<td>Westport, CT : Holocaust Child Survivors of Connecticut, c1998</td>\n<td>b26392860</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2702620">The sport psych handbook / Shane Murphy, editor</a>\n</td>\n<td>\n</td>\n<td>Champaign, IL : Human Kinetics, c2005</td>\n<td>b27026206</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2708910">Taiwan in the twenty-first century / edited by Xiaobing Li, Zuohong Pan</a>\n</td>\n<td>\n</td>\n<td>Lanham : University Press of America, c2003</td>\n<td>b27089101</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2749394">Life after graduate school in psychology : insider s advice from new psychologists / edited by Robert D. Morgan, Tara L. Kuther, Corey J. Habben</a>\n</td>\n<td>\n</td>\n<td>New York : Psychology Press, 2005</td>\n<td>b27493945</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2851206">Leonhard Euler : life, work and legacy / edited by Robert E. Bradley, C. Edward Sandifer</a>\n</td>\n<td>\n</td>\n<td>Amsterdam Boston : Elsevier, 2007</td>\n<td>b28512066</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2864992">Marketing and managing electronic reserves / [edited by] Trevor A. Dawes</a>\n</td>\n<td>\n</td>\n<td>Binghamton, NY : Haworth Information Press, c2006</td>\n<td>b28649928</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2874934">Obstetric and pediatric pathophysiology / Bernadette Madara ... [et al.]</a>\n</td>\n<td>\n</td>\n<td>Sudbury, Mass. : Jones and Bartlett Publishers, c2008</td>\n<td>b28749340</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2909282">Euler at 300 : an appreciation / edited by Robert E. Bradley, Lawrence A. D Antonio and C. Edward Sandifer</a>\n</td>\n<td>\n</td>\n<td>[Washington, D.C.] : Mathematical Association of America, c2007</td>\n<td>b29092826</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2988945">The pearl jacket and other stories : flash fiction from contemporary China / edited and translated by Shouhua Qi</a>\n</td>\n<td>\n</td>\n<td>Berkeley, Calif. : Stone Bridge Press, c2008</td>\n<td>b29889455</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1695143">Management</a>\n</td>\n<td>\n</td>\n<td>Guilford, Conn. : Dushkin Pub. Group, 1991-</td>\n<td>b16951438</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2427036">Organizational behavior 01/02 / editor, Fred H. Maidment</a>\n</td>\n<td>\n</td>\n<td>Guilford, Conn. : McGraw-Hill/Dushkin, 2001</td>\n<td>b24270362</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1625090">The new age of exploration : the next 500 years : a quincentennial celebration held at the Western Connecticut State University, Danbury, Connecticut, October 9-10, 1992 / sponsors, the Connecticut Humanities Council ... [et al] edited by Phillip K. Lu</a>\n</td>\n<td>\n</td>\n<td>Danbury, Conn. : The University, c1993</td>\n<td>b16250904</td>\n<td>Faculty Monographs</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2874938">Annual editions : International business / Fred Maidment, editor</a>\n</td>\n<td>\n</td>\n<td>Guilford, CT : Dushkin/McGraw, 1990/91-</td>\n<td>b28749388</td>\n<td>Faculty Monographs</td>\n</tr>\n</table>\n</html>
<!--{{{-->\n\n<link rel="alternate" type="application/rss+xml" title="RSS" href="?format=xml" />\n\n<!--}}}-->
/***\n|Name:|HideWhenPlugin|\n|Description:|Allows conditional inclusion/exclusion in templates|\n|Version:|3.1 ($Rev: 3919 $)|\n|Date:|$Date: 2008-03-13 02:03:12 +1000 (Thu, 13 Mar 2008) $|\n|Source:|http://mptw.tiddlyspot.com/#HideWhenPlugin|\n|Author:|Simon Baird <simon.baird@gmail.com>|\n|License:|http://mptw.tiddlyspot.com/#TheBSDLicense|\nFor use in ViewTemplate and EditTemplate. Example usage:\n{{{<div macro="showWhenTagged Task">[[TaskToolbar]]</div>}}}\n{{{<div macro="showWhen tiddler.modifier == 'BartSimpson'"><img src="bart.gif"/></div>}}}\n***/\n//{{{\n\nwindow.hideWhenLastTest = false;\n\nwindow.removeElementWhen = function(test,place) {\n window.hideWhenLastTest = test;\n if (test) {\n removeChildren(place);\n place.parentNode.removeChild(place);\n }\n};\n\n\nmerge(config.macros,{\n\n hideWhen: { handler: function(place,macroName,params,wikifier,paramString,tiddler) {\n removeElementWhen( eval(paramString), place);\n }},\n\n showWhen: { handler: function(place,macroName,params,wikifier,paramString,tiddler) {\n removeElementWhen( !eval(paramString), place);\n }},\n\n hideWhenTagged: { handler: function (place,macroName,params,wikifier,paramString,tiddler) {\n removeElementWhen( tiddler.tags.containsAll(params), place);\n }},\n\n showWhenTagged: { handler: function (place,macroName,params,wikifier,paramString,tiddler) {\n removeElementWhen( !tiddler.tags.containsAll(params), place);\n }},\n\n hideWhenTaggedAny: { handler: function (place,macroName,params,wikifier,paramString,tiddler) {\n removeElementWhen( tiddler.tags.containsAny(params), place);\n }},\n\n showWhenTaggedAny: { handler: function (place,macroName,params,wikifier,paramString,tiddler) {\n removeElementWhen( !tiddler.tags.containsAny(params), place);\n }},\n\n hideWhenTaggedAll: { handler: function (place,macroName,params,wikifier,paramString,tiddler) {\n removeElementWhen( tiddler.tags.containsAll(params), place);\n }},\n\n showWhenTaggedAll: { handler: function (place,macroName,params,wikifier,paramString,tiddler) {\n removeElementWhen( !tiddler.tags.containsAll(params), place);\n }},\n\n hideWhenExists: { handler: function(place,macroName,params,wikifier,paramString,tiddler) {\n removeElementWhen( store.tiddlerExists(params[0]) || store.isShadowTiddler(params[0]), place);\n }},\n\n showWhenExists: { handler: function(place,macroName,params,wikifier,paramString,tiddler) {\n removeElementWhen( !(store.tiddlerExists(params[0]) || store.isShadowTiddler(params[0])), place);\n }},\n\n hideWhenTitleIs: { handler: function(place,macroName,params,wikifier,paramString,tiddler) {\n removeElementWhen( tiddler.title == params[0], place);\n }},\n\n showWhenTitleIs: { handler: function(place,macroName,params,wikifier,paramString,tiddler) {\n removeElementWhen( tiddler.title != params[0], place);\n }},\n\n 'else': { handler: function(place,macroName,params,wikifier,paramString,tiddler) {\n removeElementWhen( !window.hideWhenLastTest, place);\n }}\n\n});\n\n//}}}\n
!!!The Legacy of our Civil War\n\nPanel discussion with Drs. Gutzman, Lindenauer, May, and Peretti at the Haas Library atrium, April 12th @ 11AM marking the 150th anniversary of the battle of Fort Sumter.
/%\n!info\n|Name|PaletteMaker|\n|Source|http://www.TiddlyTools.com/#PaletteMaker|\n|Version|1.2.2|\n|Author|Eric Shulman|\n|License|http://www.TiddlyTools.com/#LegalStatements|\n|Type|transclusion|\n|Description|edit/create ColorPalette using interactive grid/list|\nUsage\n<<<\n{{{\n<<tiddler PaletteMaker with: PaletteName GridName noList noGrid allowOther>>\n}}}\n*''~PaletteName'' (default=ColorPalette)<br>specifies a tiddler containing {{{name:value}}} slices that assign names to color values\n*''~GridName'' (default=[[216-color 'web safe' grid|http://en.wikipedia.org/wiki/Web_colors#Web-safe_colors]])<br>specifies a tiddler (or section) that defines a table, where each table cell contains one of:\n**a 3-digit #RGB or 6-digit #RRGGBB color value\n**an [[X11 Color Name|http://en.wikipedia.org/wiki/X11_color_names]]\n**another valid CSS attribute value (see ''allowOther'', below)\n*''noList'' //or// ''noGrid''<br>omits the palette listbox or color grid to provide a more compact layout\n*''allowOther''<br>permit non-color CSS attribute values to be entered/selected, e.g., {{{url('images/somefile.jpg')}}}\n<<<\nNotes:\n<<<\n*{{block{\nYou can use "-" as placeholders for the default values of ''~PaletteName'' and/or ''~GridName'':\n{{{\n<<tiddler PaletteMaker with: - - nogrid>>\n}}}\n}}}\n*{{block{\nThe grid/list are rendered with 'float:left' styles so content that follows will be rendered next to them. To show your content below the grid/list display, embed an //empty// 'tagClear' CSS wrapper after the PaletteMaker:\n{{{\n<<tiddler PaletteMaker ...>>{{tagClear{\n}}} \n}}}\nYou can also customize the default styles contained in [[PaletteMakerStyles]]:\n<<tiddler PaletteMaker##showcode with: styles>>\n}}}\n*The default color grid definition is:<br><<tiddler PaletteMaker##showcode with: colorgrid>>\n<<<\nExamples\n<<<\nEdit ColorPalette (allow non-color values to be entered):\n{{{<<tiddler PaletteMaker with: - - allowOther>>}}}\n<<tiddler PaletteMaker##show with: - - allowOther>>{{tagClear{\n}}}\nCreate/edit NewPalette using a 16-color 'rainbow' and/or shades of gray (no list):\n{{{<<tiddler PaletteMaker with: NewPalette PaletteMaker##grayscale noList>>}}}\n<<tiddler PaletteMaker##show with: NewPalette PaletteMaker##grayscale noList>>\n{{{<<tiddler PaletteMaker with: NewPalette PaletteMaker##rainbow noList>>}}}\n<<tiddler PaletteMaker##show with: NewPalette PaletteMaker##rainbow noList>>\n<<<\n!showcode\n<<tiddler PaletteMaker##out with: {{store.getTiddlerText('PaletteMaker##$1')}}>>\n!out\n{{{\n$1\n}}}\n!end\n\n!colorgrid\n|white || | | | | | |FC0|F90|F60|F30| | | | | | ||FFF|\n|black ||9C0| | | | |C90|FC3|FC6|F96|F63|C30| | | | |C03||EEE|\n|red ||CF0|CF3|330|660|990|CC0|FF0|C93|C63|300|600|900|C00|F00|F36|F03||DDD|\n|orange ||9F0|CF6|9C3|663|993|CC3|FF3|960|930|633|933|C33|F33|C36|F69|F06||CCC|\n|yellow ||6F0|9F6|6C3|690|996|CC6|FF6|963|630|966|C66|F66|903|C39|F6C|F09||BBB|\n|green ||3F0|6F3|390|6C0|9F3|CC9|FF9|C96|C60|C99|F99|F39|C06|906|F3C|F0C||AAA|\n|blue ||0C0|3C0|360|693|9C6|CF9|FFC|FC9|F93|FCC|F9C|C69|936|603|C09|303||999|\n|darkmagenta ||3C3|6C6|0F0|3F3|6F6|9F9|CFC| | | |C9C|969|939|909|636|606||888|\n|violet ||060|363|090|393|696|9C9| | | |FCF|F9F|F6F|F3F|F0F|C6C|C3C||777|\n|darkred ||030|0C3|063|396|6C9|9FC|CFF|39F|9CF|CCF|C9F|96C|639|306|90C|C0C||666|\n|darkorange ||0F3|3F6|093|0C6|3F9|9FF|9CC|06C|69C|99F|99C|93F|60C|609|C3F|C0F||555|\n|gold ||0F6|6F9|3C6|096|6FF|6CC|699|036|369|66F|66C|669|309|93C|C6F|90F||444|\n|darkgreen ||0F9|6FC|3C9|3FF|3CC|399|366|069|039|33F|33C|339|336|63C|96F|60F||333|\n|darkblue ||0FC|3FC|0FF|0CC|099|066|033|39C|36C|00F|00C|009|006|003|63F|30F||222|\n|indigo ||0C9| | | | |09C|3CF|6CF|69F|36F|03C| | | | |30C||111|\n|darkviolet || | | | | | |0CF|09F|06F|03F| | | | | | ||000|\n!grayscale\n|FFF|EEE|DDD|CCC|BBB|AAA|999|888|777|666|555|444|333|222|111|000|\n!rainbow\n|black|white|red|orange|yellow|green|blue|darkmagenta|violet|darkred|darkorange|gold|darkgreen|darkblue|indigo|darkviolet|\n!end\n\n!styles\n/*{{{*/\n.colorgrid table\n { float:left; margin:0 !important; border:0 !important; }\n.colorgrid table, .colorgrid tr, .colorgrid th, .colorgrid tbody\n { color:black; border:0 !important; }\n.colorgrid td\n { height:16px; width:16px; text-align:center; padding:0; line-height:100%; }\n.colorgrid select\n { float:left; margin-left:16px; font-size:80%; height:255px; }\n/*}}}*/\n!end\n\n!code\n<<tiddler {{\nconfig.shadowTiddlers.PaletteMakerStyles=store.getTiddlerText('PaletteMaker##styles');\nsetStylesheet(store.getTiddlerText('PaletteMakerStyles'),'paletteMakerStyles');\nwindow.paletteMaker = {\n getColor: function(t){ if (!t||!t.length) return null;\n var s=document.createElement('span').style;\n try { s.color='#'+t; if (s.color.length) return '#'+t; }\n catch(e) { try{ s.color=t; } catch(e){ return null; } return t; } // IE \n s.color=t; return s.color.length?t:null; // FF\n },\n getTextColor: function(t){ \n t=this.getColor(t);\n if (!t||!t.length||!t.startsWith('#')) return 'black'; // BAD COLOR or X11 COLOR NAME\n var rgb=t.substr(1).split(''); var long=t.length>=6;\n function h2d(h){return '0123456789ABCDEF'.indexOf(h?h.toUpperCase():'');};\n var r=h2d(rgb[0]); var g=h2d(rgb[long?2:1]); var b=h2d(rgb[long?4:2]);\n if (r<0||g<0||b<0||r+g+b>=15) return 'black'; // BAD RGB or BRIGHT COLOR\n return 'white'; // DARK COLOR\n },\n getPalette: function(palette) {\n var pal={};\n var slices=store.calcAllSlices(palette);\n for (var s in slices) {\n var color=slices[s].toUpperCase().replace(/#/,'');\n if (!pal[color]) pal[color]=new Array();\n pal[color].push(s);\n }\n return pal;\n },\n drawGrid: function(place,grid,palette,opts) {\n var pm=window.paletteMaker; // abbrev\n removeChildren(place);\n if (!opts.contains('NOGRID')) wikify(store.getTiddlerText(grid,''),place);\n if (!opts.contains('NOLIST')) var s=pm.drawList(place,\n { palette:palette,min:0,max:0,edit:true,callback:pm.callback,place:place,opts:opts });\n var pal=pm.getPalette(palette);\n var cells=place.getElementsByTagName('td');\n for (var i=0; i<cells.length; i++) { var td=cells[i];\n td.style.border=0;\n var txt=getPlainText(td).trim(); if (!txt.length) continue;\n var c=pm.getColor(txt); if (!c && !opts.contains('ALLOWOTHER')) continue;\n if (c) { td.style.backgroundColor=c; td.innerHTML=''; td.style.fontSize='70%'; }\n td.title=c||txt;\n td.style.cursor=c?'crosshair':'pointer';\n td.params={ palette:palette, min:0, max:15, edit:true, callback:pm.callback,\n place:place, grid:grid, opts:opts, pick:c||txt };\n if (pal[txt.toUpperCase()]) {\n td.params.names=pal[txt.toUpperCase()];\n td.title+='='+td.params.names.join(', ');\n if (c) { td.style.color=pm.getTextColor(c); td.innerHTML='√'; }\n }\n td.onclick=function(ev) { ev=ev||window.event;\n var p=Popup.create(this); if(!p)return false;\n p.className+=' sticky smallform';\n var s=window.paletteMaker.drawList(p,this.params);\n s.style.fontSize='80%'; Popup.show(); s.focus();\n ev.cancelBubble=true; if(ev.stopPropagation)ev.stopPropagation();\n return false;\n };\n }\n },\n drawList: function(here,p) {\n var pm=window.paletteMaker; // abbrev\n var s=createTiddlyElement(here,'select');\n s.params=p;\n s.options[s.length]=new Option(p.palette+':','_view');\n s.options[s.length-1].title='open '+p.palette;\n if (p.edit && p.pick!==undefined) {\n var c=pm.getColor(p.pick);\n s.options[s.length]=new Option('+Add this color...','_add');\n if (c) s.options[s.length-1].style.backgroundColor=c;\n if (c) s.options[s.length-1].style.color=pm.getTextColor(c);\n s.options[s.length-1].title=p.pick;\n }\n var colors=store.calcAllSlices(p.palette);\n for (var x in colors) {\n var c=pm.getColor(colors[x]);\n var prefix=p.names&&p.names.contains(x)?'=':'\sxA0\sxA0';\n s.options[s.length]=new Option(prefix+x,colors[x]);\n if (c) s.options[s.length-1].style.backgroundColor=c;\n if (c) s.options[s.length-1].style.color=pm.getTextColor(c)\n s.options[s.length-1].title=(!c?'other: "':'')+colors[x]+(!c?'"':'');\n }\n s.size=p.min&&s.length<p.min?p.min:p.max&&s.length>p.max?p.max:s.length;\n s.onclick=function(ev){ ev=ev||window.event;\n var name=this.options[this.selectedIndex].text.replace(/[\sxA0=]+/,'').trim();\n if (this.params.callback) this.params.callback(this,name,this.value,this.params);\n return false;\n };\n s.onkeyup=function(ev){ ev=ev||window.event;\n if (ev.keyCode==13) { this.onclick(); Popup.remove(); }\n if (ev.keyCode==27) Popup.remove();\n return false;\n };\n return s;\n },\n callback: function(here,name,val,p){\n var pm=window.paletteMaker; // abbrev\n if (!val.length) return;\n var pick=p.pick!==undefined?p.pick:val;\n if (val=='_view') {\n story.displayTiddler(story.findContainingTiddler(this.place),p.palette);\n Popup.remove();\n return false;\n } else if (val=='_add') {\n var msg='Enter a new name for "'+pick+'"';\n name=prompt(msg,'');\n var slices=store.calcAllSlices(p.palette);\n while (name && slices[name])\n name=prompt('"'+name+'" is already in use\sn'+msg,name);\n } else if (p.edit) {\n var allow=p.opts.contains('ALLOWOTHER');\n var msg='Change "'+name+'" from "'+val+'" to:';\n pick=prompt(msg,pick);\n while (pick && !pm.getColor(pick)) {\n var err='"'+pick+'" is not a recognized color\sn\sxa0';\n if (!allow) err+='Please try again\sn\sn';\n else err+='Press OK to use this value anyway\sn\sn';\n var pre=pick; pick=prompt(err+msg,pick);\n if (pre==pick && allow) break;\n }\n } else {\n // TBD: callback without editing\n Popup.remove(); return false;\n }\n here.selectedIndex=0;\n if (!name||!pick) return false;\n pm.set(p.palette,name.replace(/ /g,''),pick);\n pm.drawGrid(p.place,p.grid,p.palette,p.opts);\n Popup.remove();\n return false;\n },\n set: function(palette,name,newval) {\n var tid=store.getTiddler(palette);\n if (!tid) { var tid=new Tiddler(); tid.text=store.getTiddlerText(palette,''); }\n var oldval=store.getTiddlerSlice(palette,name)||'';\n var pattern="((?:^|\s\sn)(?:[\s\s'\s\s/]{0,2})~?(?:"\n +name.escapeRegExp()\n +")\s\s1\s\s:[\s\st\s\sx20]*)(?:"\n +oldval.escapeRegExp()\n +")([\s\st\s\sx20]*(?:\s\sn|$))";\n var t=tid.text; var match=t.match(new RegExp(pattern));\n if (match) {\n var pos=t.indexOf(match[0]);\n var newText=t.substr(0,pos)+\n match[1]+newval+match[2]+\n t.substr(pos+match[0].length);\n } else { // place new slice at top of list or start of tiddler\n var match=t.match(store.slicesRE);\n var pos=t.indexOf(match?match[0]:'');\n var newText=t.substr(0,pos)\n +name+': '+newval+(t.length?'\sn':'')\n +t.substr(pos);\n }\n var who=config.options.txtUserName; var when=new Date();\n if (config.options.chkForceMinorUpdate)\n { var who=tid.modifier; var when=tid.modified; }\n displayMessage('setting "'+palette+'::'+name+'" to "'+newval+'"');\n store.saveTiddler(palette,palette,newText,who,when,tid.tags,tid.fields);\n story.refreshTiddler(palette,null,true);\n }\n};\n'';}}>>\n!end\n\n!show\n<<tiddler {{\n var opts=[]\n var palette=('$1'!='$'+'1' && '$1'!='-')?'$1':'ColorPalette';\n var grid =('$2'!='$'+'2' && '$2'!='-')?'$2':'PaletteMaker##colorgrid';\n opts.push('$3'.toUpperCase());\n opts.push('$4'.toUpperCase());\n opts.push('$5'.toUpperCase());\n if (!place.lastChild||!hasClass(place.lastChild,'colorgrid')) {\n var wrapper=createTiddlyElement(place,'span',null,'colorgrid');\n window.paletteMaker.drawGrid(wrapper,grid,palette,opts);\n }\n'';}}>>\n!end\n\n%/<<tiddler PaletteMaker##code>>/%\n%/<<tiddler {{var src='PaletteMaker'; src+(tiddler&&tiddler.title==src?'##info':'##show');}}\n with: [[$1]] [[$2]] [[$3]] [[$4]] [[$5]]>>
<html>\n<div id="content">\n<img src="http://archives.library.wcsu.edu/relatedObjects/sideImg.gif" align="right"/>\n<a href="http://archives.library.wcsu.edu/cgi-bin/ead-filenames.cgi">Click here for a list of digital objects linked to our collections</a> \n</div>\n</html>\n*[[Digital Collections in WestCollections|http://library.wcsu.edu/dspace/handle/0/99]]\n*[[The Danbury Ledgers 1826-1932|http://archives.library.wcsu.edu/collections/DRG1]]\n*[[Howard Dunham Barlow Collection|http://archives.library.wcsu.edu/collections/MS001]]\n*[[Bartlett Collection|http://archives.library.wcsu.edu/collections/MS054]]\n*[[Edward Eliscu Papers|http://archives.library.wcsu.edu/collections/MS040]]\n*[[Jack Friel University History Collection| http://archives.library.wcsu.edu/collections/MS004]]\n*[[Connecticut Historical and Printed Miscellanea Collection|http://archives.library.wcsu.edu/collections/MS002]]\n*[[Alfred Geddes Papers|http://archives.library.wcsu.edu/collections/MS008]]\n*[[Charles D. Garlick Letters|http://archives.library.wcsu.edu/collections/MS007]]\n*[[Alfred Geddes Papers|http://archives.library.wcsu.edu/collections/MS008]]\n*[[George B. Hawley Papers|http://archives.library.wcsu.edu/collections/MS011]]\n*[[Herb Janick Papers|http://archives.library.wcsu.edu/collections/MS012]]\n*[[James S. Kent Letters|http://archives.library.wcsu.edu/collections/MS013]]\n*[[Hamilton Orgelman Papers|http://archives.library.wcsu.edu/collections/MS019]]\n*[[Truman Warner Papers|http://archives.library.wcsu.edu/collections/MS026]]\n*[[Danbury Miscellanea|http://archives.library.wcsu.edu/collections/MS038]]\n*[[Horace Purdy Journals|http://archives.library.wcsu.edu/collections/MS044]]\n*[[WCSU Photos and Miscellanea|http://archives.library.wcsu.edu/collections/RG8]]\n*[[Lewis Zurlo Collection|http://archives.library.wcsu.edu/collections/MS028]]\n
!Brooklyn Historical Society Gift Processed Book donation is cataloged from the Brooklyn Historical Society\n\nIn December, the Brooklyn Historical Society donated some 918 books to the Special Collections library at the Haas Library which are now available in CONSULS. The books document the history of Connecticut from its founding up to the Second World War and substantially supplement our Connecticut history collection already in the Connecticut Room. A list of books gifted by the BHS is available at the following [[link|http://library.wcsu.edu/web/about/units/archives/BHSGift.tkl]]\n\n13% of this gift are titles that are new acquisitions to the CONSULS systems and only available at WCSU. A list of these titles can be viewed at the following link: [[List of titles.|Unique Titles from Brooklyn Historical Society Gift]]\n\nThanks to Melissa Dunn '10 for her indispensable assistance in processing the gift.
/***\n|''Name:''|FootnotesPlugin|\n|''Description:''|Create automated tiddler footnotes.|\n|''Author:''|Saq Imtiaz ( lewcid@gmail.com )|\n|''Source:''|http://tw.lewcid.org/#FootnotesPlugin|\n|''Code Repository:''|http://tw.lewcid.org/svn/plugins|\n|''Version:''|2.01|\n|''Date:''|10/25/07|\n|''License:''|[[Creative Commons Attribution-ShareAlike 3.0 License|http://creativecommons.org/licenses/by-sa/3.0/]]|\n|''~CoreVersion:''|2.2.2|\n\n!!Usage:\n*To create a footnote, just put the footnote text inside triple backticks.\n*Footnotes are numbered automatically, and listed at the bottom of the tiddler.\n*{{{Creating a footnote is easy. ```This is the text for my footnote```}}}\n*[[Example|FootnotesDemo]]\n***/\n// /%\n//!BEGIN-PLUGIN-CODE\nconfig.footnotesPlugin = {\n backLabel: "back",\n prompt:"show footnote"\n};\n\nconfig.formatters.unshift( {\n name: "footnotes",\n match: "```",\n lookaheadRegExp: /```((?:.|\sn)*?)```/g,\n handler: function(w)\n {\n this.lookaheadRegExp.lastIndex = w.matchStart;\n var lookaheadMatch = this.lookaheadRegExp.exec(w.source);\n if(lookaheadMatch && lookaheadMatch.index == w.matchStart )\n {\n var tiddler = story.findContainingTiddler(w.output);\n if (!tiddler.notes)\n tiddler.notes = [];\n var title = tiddler.getAttribute("tiddler");\n tiddler.notes.pushUnique(lookaheadMatch[1]);\n var pos = tiddler.notes.indexOf(lookaheadMatch[1]) + 1;\n createTiddlyButton(w.output,pos,config.footnotesPlugin.prompt,function(){var x = document.getElementById(title+"ftn"+pos);window.scrollTo(0,ensureVisible(x)+(ensureVisible(x)<findScrollY()?(findWindowHeight()-x.offsetHeight):0));return false;},"ftnlink",title+"ftnlink"+pos); \n w.nextMatch = lookaheadMatch.index + lookaheadMatch[0].length;\n }\n }\n});\n\nold_footnotes_refreshTiddler = Story.prototype.refreshTiddler;\nStory.prototype.refreshTiddler = function(title,template,force)\n{\n var tiddler = old_footnotes_refreshTiddler.apply(this,arguments);\n if (tiddler.notes && tiddler.notes.length)\n {\n var holder = createTiddlyElement(null,"div",null,"footnoteholder");\n var list = createTiddlyElement(holder,"ol",title+"footnoteholder");\n for (var i=0; i<tiddler.notes.length; i++)\n {\n var ftn = createTiddlyElement(list,"li",title+"ftn"+(i+1),"footnote");\n wikify(tiddler.notes[i]+" ",ftn);\n createTiddlyButton(ftn,"["+config.footnotesPlugin.backLabel+"]",config.footnotesPlugin.backLabel,function(){window.scrollTo(0,ensureVisible(document.getElementById(this.parentNode.id.replace("ftn","ftnlink"))));return false;},"ftnbklink");\n }\n var count = tiddler.childNodes.length;\n for (var j=0; j<count; j++){\n if(hasClass(tiddler.childNodes[j],"viewer")){\n var viewer = tiddler.childNodes[j]; \n }\n }\n viewer.appendChild(holder);\n tiddler.notes = [];\n }\n return tiddler;\n};\n\nsetStylesheet(\n".tiddler a.ftnlink {vertical-align: super; font-size: 0.8em; color:red;}\sn"+\n".tiddler a.ftnlink:hover, .tiddler .footnoteholder a.ftnbklink:hover{color:#fff;background:red;}\sn"+\n".tiddler div.footnoteholder{margin:1.8em 1.0em; padding:0.1em 1.0em 0.1em 1.0em ;border-left: 1px solid #ccc;}"+\n".tiddler footnoteholder ol {font-size: 0.9em; line-height: 1.2em;}\sn"+\n".tiddler .footnoteholder li.footnote {margin: 0 0 5px 0;}\sn"+\n".tiddler .footnoteholder a.ftnbklink{color:red;}\sn","FootNotesStyles");\n//!END-PLUGIN-CODE\n// %/
/***\n<<checkForDataTiddlerPlugin>>\n|''Name:''|FormTiddlerPlugin|\n|''Version:''|1.0.6 (2007-06-24)|\n|''Source:''|http://tiddlywiki.abego-software.de/#FormTiddlerPlugin|\n|''Author:''|UdoBorkowski (ub [at] abego-software [dot] de)|\n|''Licence:''|[[BSD open source license]]|\n|''Macros:''|formTiddler, checkForDataTiddlerPlugin, newTiddlerWithForm|\n|''Requires:''|DataTiddlerPlugin|\n|''TiddlyWiki:''|1.2.38+, 2.0|\n|''Browser:''|Firefox 1.0.4+; InternetExplorer 6.0|\n!Description\nUse form-based tiddlers to enter your tiddler data using text fields, listboxes, checkboxes etc. (All standard HTML Form input elements supported).\n\n''Syntax:'' \n|>|{{{<<}}}''formTiddler'' //tiddlerName//{{{>>}}}|\n|//tiddlerName//|The name of the FormTemplate tiddler to be used to edit the data of the tiddler containing the macro.|\n\n|>|{{{<<}}}''newTiddlerWithForm'' //formTemplateName// //buttonLabel// [//titleExpression// [''askUser'']] {{{>>}}}|\n|//formTemplateName//|The name of the tiddler that defines the form the new tiddler should use.|\n|//buttonLabel//|The label of the button|\n|//titleExpression//|A (quoted) JavaScript String expression that defines the title (/name) of the new tiddler.|\n|''askUser''|Typically the user is not asked for the title when a title is specified (and not yet used). When ''askUser'' is given the user will be asked in any case. This may be used when the calculated title is just a suggestion that must be confirmed by the user|\n|>|~~Syntax formatting: Keywords in ''bold'', optional parts in [...]. 'or' means that exactly one of the two alternatives must exist.~~|\n\nFor details and how to use the macros see the [[introduction|FormTiddler Introduction]] and the [[examples|FormTiddler Examples]].\n\n!Revision history\n* v1.0.6 (2007-06-24)\n** Fixed problem when using SELECT component in Internet Explorer (thanks to MaikBoenig for reporting)\n* v1.0.5 (2006-02-24)\n** Removed "debugger;" instruction\n* v1.0.4 (2006-02-07)\n** Bug: On IE no data is written to data section when field values changed (thanks to KenGirard for reporting)\n* v1.0.3 (2006-02-05)\n** Bug: {{{"No form template specified in <<formTiddler>>"}}} when using formTiddler macro on InternetExplorer (thanks to KenGirard for reporting)\n* v1.0.2 (2006-01-06)\n** Support TiddlyWiki 2.0\n* v1.0.1 (2005-12-22)\n** Features: \n*** Support InternetExplorer\n*** Added newTiddlerWithForm Macro\n* v1.0.0 (2005-12-14)\n** initial version\n\n!Code\n***/\n//{{{\n\n//============================================================================\n//============================================================================\n// FormTiddlerPlugin\n//============================================================================\n//============================================================================\n\nif (!window.abego) window.abego = {};\n\nabego.getOptionsValue = function(element,i) {\n var v = element.options[i].value;\n if (!v && element.options[i].text)\n v = element.options[i].text;\n return v;\n};\n\nversion.extensions.FormTiddlerPlugin = {\n major: 1, minor: 0, revision: 5,\n date: new Date(2006, 2, 24), \n type: 'plugin',\n source: "http://tiddlywiki.abego-software.de/#FormTiddlerPlugin"\n};\n\n// For backward compatibility with v1.2.x\n//\nif (!window.story) window.story=window; \nif (!TiddlyWiki.prototype.getTiddler) TiddlyWiki.prototype.getTiddler = function(title) { return t = this.tiddlers[title]; return (t != undefined && t instanceof Tiddler) ? t : null; } \n\n//============================================================================\n// formTiddler Macro\n//============================================================================\n\n// -------------------------------------------------------------------------------\n// Configurations and constants \n// -------------------------------------------------------------------------------\n\nconfig.macros.formTiddler = {\n // Standard Properties\n label: "formTiddler",\n version: {major: 1, minor: 0, revision: 4, date: new Date(2006, 2, 7)},\n prompt: "Edit tiddler data using forms",\n\n // Define the "setters" that set the values of INPUT elements of a given type\n // (must match the corresponding "getter")\n setter: { \n button: function(e, value) {/*contains no data */ },\n checkbox: function(e, value) {e.checked = value;},\n file: function(e, value) {try {e.value = value;} catch(e) {/* ignore, possibly security error*/}},\n hidden: function(e, value) {e.value = value;},\n password: function(e, value) {e.value = value;},\n radio: function(e, value) {e.checked = (e.value == value);},\n reset: function(e, value) {/*contains no data */ },\n "select-one": function(e, value) {config.macros.formTiddler.setSelectOneValue(e,value);},\n "select-multiple": function(e, value) {config.macros.formTiddler.setSelectMultipleValue(e,value);},\n submit: function(e, value) {/*contains no data */},\n text: function(e, value) {e.value = value;},\n textarea: function(e, value) {e.value = value;}\n },\n\n // Define the "getters" that return the value of INPUT elements of a given type\n // Return undefined to not store any data.\n getter: { \n button: function(e, value) {return undefined;},\n checkbox: function(e, value) {return e.checked;},\n file: function(e, value) {return e.value;},\n hidden: function(e, value) {return e.value;},\n password: function(e, value) {return e.value;},\n radio: function(e, value) {return e.checked ? e.value : undefined;},\n reset: function(e, value) {return undefined;},\n "select-one": function(e, value) {return config.macros.formTiddler.getSelectOneValue(e);},\n "select-multiple": function(e, value) {return config.macros.formTiddler.getSelectMultipleValue(e);},\n submit: function(e, value) {return undefined;},\n text: function(e, value) {return e.value;},\n textarea: function(e, value) {return e.value;}\n }\n};\n\n\n// -------------------------------------------------------------------------------\n// The formTiddler Macro Handler \n// -------------------------------------------------------------------------------\n\nconfig.macros.formTiddler.handler = function(place,macroName,params,wikifier,paramString,tiddler) {\n if (!config.macros.formTiddler.checkForExtensions(place, macroName)) {\n return;\n }\n // --- Parsing ------------------------------------------\n\n var i = 0; // index running over the params\n\n // get the name of the form template tiddler\n var formTemplateName = undefined;\n if (i < params.length) {\n formTemplateName = params[i];\n i++;\n }\n\n if (!formTemplateName) {\n config.macros.formTiddler.createErrorElement(place, "No form template specified in <<" + macroName + ">>.");\n return;\n }\n\n\n // --- Processing ------------------------------------------\n\n // Get the form template text. \n // (This contains the INPUT elements for the form.)\n var formTemplateTiddler = store.getTiddler(formTemplateName);\n if (!formTemplateTiddler) {\n config.macros.formTiddler.createErrorElement(place, "Form template '" + formTemplateName + "' not found.");\n return;\n }\n var templateText = formTemplateTiddler.text;\n if(!templateText) {\n // Shortcut: when template text is empty we do nothing.\n return;\n }\n\n // Get the name of the tiddler containing this "formTiddler" macro\n // (i.e. the tiddler, that will be edited and that contains the data)\n var tiddlerName = config.macros.formTiddler.getContainingTiddlerName(place);\n\n // Append a "form" element. \n var formName = "form"+formTemplateName+"__"+tiddlerName;\n var e = document.createElement("form");\n e.setAttribute("name", formName);\n place.appendChild(e);\n\n // "Embed" the elements defined by the templateText (i.e. the INPUT elements) \n // into the "form" element we just created\n wikify(templateText, e);\n\n // Initialize the INPUT elements.\n config.macros.formTiddler.initValuesAndHandlersInFormElements(formName, DataTiddler.getDataObject(tiddlerName));\n}\n\n\n// -------------------------------------------------------------------------------\n// Form Data Access \n// -------------------------------------------------------------------------------\n\n// Internal.\n//\n// Initialize the INPUT elements of the form with the values of their "matching"\n// data fields in the tiddler. Also setup the onChange handler to ensure that\n// changes in the INPUT elements are stored in the tiddler's data.\n//\nconfig.macros.formTiddler.initValuesAndHandlersInFormElements = function(formName, data) {\n // config.macros.formTiddler.trace("initValuesAndHandlersInFormElements(formName="+formName+", data="+data+")");\n\n // find the form\n var form = config.macros.formTiddler.findForm(formName);\n if (!form) {\n return;\n }\n\n try {\n var elems = form.elements;\n for (var i = 0; i < elems.length; i++) {\n var c = elems[i];\n \n var setter = config.macros.formTiddler.setter[c.type];\n if (setter) {\n var value = data[c.name];\n if (value != null) {\n setter(c, value);\n }\n c.onchange = onFormTiddlerChange;\n } else {\n config.macros.formTiddler.displayFormTiddlerError("No setter defined for INPUT element of type '"+c.type+"'. (Element '"+c.name+"' in form '"+formName+"')");\n }\n }\n } catch(e) {\n config.macros.formTiddler.displayFormTiddlerError("Error when updating elements with new formData. "+e);\n }\n}\n\n\n// Internal.\n//\n// @return [may be null]\n//\nconfig.macros.formTiddler.findForm = function(formName) {\n // We must manually iterate through the document's forms, since\n // IE does not support the "document[formName]" approach\n\n var forms = window.document.forms;\n for (var i = 0; i < forms.length; i++) {\n var form = forms[i];\n if (form.name == formName) {\n return form;\n }\n }\n\n return null;\n}\n\n\n// Internal.\n//\nconfig.macros.formTiddler.setSelectOneValue = function(element,value) {\n var n = element.options.length;\n for (var i = 0; i < n; i++) {\n element.options[i].selected = abego.getOptionsValue(element,i) == value;\n }\n}\n\n// Internal.\n//\nconfig.macros.formTiddler.setSelectMultipleValue = function(element,value) {\n var values = {};\n for (var i = 0; i < value.length; i++) {\n values[value[i]] = true;\n }\n \n var n = element.length;\n for (var i = 0; i < n; i++) {\n element.options[i].selected = !(!values[abego.getOptionsValue(element,i)]);\n }\n}\n\n// Internal.\n//\nconfig.macros.formTiddler.getSelectOneValue = function(element) {\n var i = element.selectedIndex;\n return (i >= 0) ? abego.getOptionsValue(element,i) : null;\n}\n\n// Internal.\n//\nconfig.macros.formTiddler.getSelectMultipleValue = function(element) {\n var values = [];\n var n = element.length;\n for (var i = 0; i < n; i++) {\n if (element.options[i].selected) {\n values.push(abego.getOptionsValue(element,i));\n }\n }\n return values;\n}\n\n\n\n// -------------------------------------------------------------------------------\n// Helpers \n// -------------------------------------------------------------------------------\n\n// Internal.\n//\nconfig.macros.formTiddler.checkForExtensions = function(place,macroName) {\n if (!version.extensions.DataTiddlerPlugin) {\n config.macros.formTiddler.createErrorElement(place, "<<" + macroName + ">> requires the DataTiddlerPlugin. (You can get it from http://tiddlywiki.abego-software.de/#DataTiddlerPlugin)");\n return false;\n }\n return true;\n}\n\n// Internal.\n//\n// Displays a trace message in the "TiddlyWiki" message pane.\n// (used for debugging)\n//\nconfig.macros.formTiddler.trace = function(s) {\n displayMessage("Trace: "+s);\n}\n\n// Internal.\n//\n// Display some error message in the "TiddlyWiki" message pane.\n//\nconfig.macros.formTiddler.displayFormTiddlerError = function(s) {\n alert("FormTiddlerPlugin Error: "+s);\n}\n\n// Internal.\n//\n// Creates an element that holds an error message\n// \nconfig.macros.formTiddler.createErrorElement = function(place, message) {\n return createTiddlyElement(place,"span",null,"formTiddlerError",message);\n}\n\n// Internal.\n//\n// Returns the name of the tiddler containing the given element.\n// \nconfig.macros.formTiddler.getContainingTiddlerName = function(element) {\n return story.findContainingTiddler(element).id.substr(7);\n}\n\n// -------------------------------------------------------------------------------\n// Event Handlers \n// -------------------------------------------------------------------------------\n\n// This function must be called by the INPUT elements whenever their\n// data changes. Typically this is done through an "onChange" handler.\n//\nfunction onFormTiddlerChange (e) {\n // config.macros.formTiddler.trace("onFormTiddlerChange "+e);\n\n if (!e) var e = window.event;\n\n var target = resolveTarget(e);\n var tiddlerName = config.macros.formTiddler.getContainingTiddlerName(target);\n var getter = config.macros.formTiddler.getter[target.type];\n if (getter) {\n var value = getter(target);\n DataTiddler.setData(tiddlerName, target.name, value);\n } else {\n config.macros.formTiddler.displayFormTiddlerError("No getter defined for INPUT element of type '"+target.type+"'. (Element '"+target.name+"' used in tiddler '"+tiddlerName+"')");\n }\n}\n\n// ensure that the function can be used in HTML event handler\nwindow.onFormTiddlerChange = onFormTiddlerChange;\n\n\n// -------------------------------------------------------------------------------\n// Stylesheet Extensions (may be overridden by local StyleSheet)\n// -------------------------------------------------------------------------------\n\nsetStylesheet(\n ".formTiddlerError{color: #ffffff;background-color: #880000;}",\n "formTiddler");\n\n\n//============================================================================\n// checkForDataTiddlerPlugin Macro\n//============================================================================\n\nconfig.macros.checkForDataTiddlerPlugin = {\n // Standard Properties\n label: "checkForDataTiddlerPlugin",\n version: {major: 1, minor: 0, revision: 0, date: new Date(2005, 12, 14)},\n prompt: "Check if the DataTiddlerPlugin exists"\n}\n\nconfig.macros.checkForDataTiddlerPlugin.handler = function(place,macroName,params) {\n config.macros.formTiddler.checkForExtensions(place, config.macros.formTiddler.label);\n}\n\n\n\n//============================================================================\n// newTiddlerWithForm Macro\n//============================================================================\n\nconfig.macros.newTiddlerWithForm = {\n // Standard Properties\n label: "newTiddlerWithForm",\n version: {major: 1, minor: 0, revision: 1, date: new Date(2006, 1, 6)},\n prompt: "Creates a new Tiddler with a <<formTiddler ...>> macro"\n}\n\nconfig.macros.newTiddlerWithForm.handler = function(place,macroName,params) {\n // --- Parsing ------------------------------------------\n\n var i = 0; // index running over the params\n\n // get the name of the form template tiddler\n var formTemplateName = undefined;\n if (i < params.length) {\n formTemplateName = params[i];\n i++;\n }\n\n if (!formTemplateName) {\n config.macros.formTiddler.createErrorElement(place, "No form template specified in <<" + macroName + ">>.");\n return;\n }\n\n // get the button label\n var buttonLabel = undefined;\n if (i < params.length) {\n buttonLabel = params[i];\n i++;\n }\n\n if (!buttonLabel) {\n config.macros.formTiddler.createErrorElement(place, "No button label specified in <<" + macroName + ">>.");\n return;\n }\n\n // get the (optional) tiddlerName script and "askUser"\n var tiddlerNameScript = undefined;\n var askUser = false;\n if (i < params.length) {\n tiddlerNameScript = params[i];\n i++;\n\n if (i < params.length && params[i] == "askUser") {\n askUser = true;\n i++;\n }\n }\n\n // --- Processing ------------------------------------------\n\n if(!readOnly) {\n var onClick = function() {\n var tiddlerName;\n if (tiddlerNameScript) {\n try {\n tiddlerName = eval(tiddlerNameScript);\n } catch (ex) {\n }\n }\n if (!tiddlerName || askUser) {\n tiddlerName = prompt("Please specify a tiddler name.", askUser ? tiddlerName : "");\n }\n while (tiddlerName && store.getTiddler(tiddlerName)) {\n tiddlerName = prompt("A tiddler named '"+tiddlerName+"' already exists.\sn\sn"+"Please specify a tiddler name.", tiddlerName);\n }\n\n // tiddlerName is either null (user canceled) or a name that is not yet in the store.\n if (tiddlerName) {\n var body = "<<formTiddler [["+formTemplateName+"]]>>";\n var tags = [];\n store.saveTiddler(tiddlerName,tiddlerName,body,config.options.txtUserName,new Date(),tags);\n story.displayTiddler(null,tiddlerName,1);\n }\n }\n\n createTiddlyButton(place,buttonLabel,buttonLabel,onClick);\n }\n}\n\n//}}}\n\n\n/***\n!Licence and Copyright\nCopyright (c) abego Software ~GmbH, 2005 ([[www.abego-software.de|http://www.abego-software.de]])\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this\nlist of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this\nlist of conditions and the following disclaimer in the documentation and/or other\nmaterials provided with the distribution.\n\nNeither the name of abego Software nor the names of its contributors may be\nused to endorse or promote products derived from this software without specific\nprior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT\nSHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\nTO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN\nANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGE.\n***/\n
/***\n|''Name:''|TiddlerNotesPlugin|\n|''Description:''|Add notes to tiddlers without modifying the original content|\n|''Author:''|Saq Imtiaz ( lewcid@gmail.com )|\n|''Source:''|http://tw.lewcid.org/#TiddlerNotesPlugin|\n|''Code Repository:''|http://tw.lewcid.org/svn/plugins|\n|''Version:''|2.1|\n|''Date:''|26/10/07|\n|''License:''|[[Creative Commons Attribution-ShareAlike 3.0 License|http://creativecommons.org/licenses/by-sa/3.0/]]|\n|''~CoreVersion:''|2.2.3|\n\n!!Concept:\n*The TiddlerNotesPlugin allows you to add notes to tiddlers, without needing to edit the original tiddler. This means that your original content will remain unaltered, and if you update it in the future, you won't lose your notes. Notes are stored in separate tiddlers, but can be viewed and edited from within the original tiddler.\n*For a tiddler titled "~MySlide", the notes are by default saved in a tiddler titled "~MySlide-Notes" and is given a tag of "Notes". The suffix and tags of the notes tiddlers are customizable. You can have one or multiple notes per tiddlers. So it is possible to have for example, teacher's notes and student's notes in the same file.\n*Notes can be configured to start off blank, or pre-filled with the contents of the original tiddler.\n\n!!Usage:\n*{{{<<notes>>}}} is the simplest usage form.\n* additional optional parameters include:\n**{{{heading:}}} the heading to use for the notes box\n**{{{tag:}}} the tag to be given to the notes tiddler\n**{{{suffix:}}} the suffix to be used when naming the notes tiddler\n* a full macro call could look like: {{{<<notes heading:"My Notes" tag:"NoteTiddlers" suffix:"Comments">>}}}\n* To avoid adding {{{<<notes>>}}} to each tiddler you want notes for, you could add the macro call to the ViewTemplate\n** below the line {{{<div class='viewer' macro='view text wikified'></div>}}} add the following line: <br> {{{<div class='viewer' macro='notes'></div>}}}\n** Used in combination with the ~HideWhenPlugin or ~PublisherPlugin, you could have notes be shown only for tiddlers with specific tags. The ~PublisherPlugin would allow you for instance to only have the ~TeachersNotes visible to the teacher, and the ~StudentsNotes for the same tiddler visible to the Student.\n\n!!Configuration\n*<<option chkPrefillNotes>> Enable to pre-fill notes with the original tiddler's contents\n\n!!Demo:\n* [[MySlide]]\n\n***/\n// /%\n//!BEGIN-PLUGIN-CODE\n\nif (!config.options.chkPrefillNotes)\n config.options.chkPrefillNotes = false;\n \nfunction createTiddlyElement(theParent,theElement,theID,theClass,theText,attribs)\n{\n var e = document.createElement(theElement);\n if(theClass != null)\n e.className = theClass;\n if(theID != null)\n e.setAttribute("id",theID);\n if(theText != null)\n e.appendChild(document.createTextNode(theText));\n if(attribs){\n for(var n in attribs){\n e.setAttribute(n,attribs[n]);\n }\n }\n if(theParent != null)\n theParent.appendChild(e);\n return e;\n}\n\nfunction createTiddlyButton(theParent,theText,theTooltip,theAction,theClass,theId,theAccessKey,attribs)\n{\n var theButton = document.createElement("a");\n if(theAction) {\n theButton.onclick = theAction;\n theButton.setAttribute("href","javascript:;");\n }\n if(theTooltip)\n theButton.setAttribute("title",theTooltip);\n if(theText)\n theButton.appendChild(document.createTextNode(theText));\n if(theClass)\n theButton.className = theClass;\n else\n theButton.className = "button";\n if(theId)\n theButton.id = theId;\n if(attribs){\n for(var n in attribs){\n e.setAttribute(n,attribs[n]);\n }\n }\n if(theParent)\n theParent.appendChild(theButton);\n if(theAccessKey)\n theButton.setAttribute("accessKey",theAccessKey);\n return theButton;\n}\n\nconfig.macros.notes={\n \n cancelWarning: "Are you sure you want to abandon changes to your notes for '%0'?",\n editLabel: "edit notes",\n editTitle: "double click to edit",\n saveLabel: "save notes",\n saveTitle: "double click to save",\n cancelLabel: "cancel",\n heading: "Notes",\n suffix: "Notes",\n tag: "Notes",\n \n saveNotes: function(ev){\n e = ev? ev : window.event;\n var theTarget = resolveTarget(e);\n if (theTarget.nodeName.toLowerCase() == "textarea")\n return false;\n var title = story.findContainingTiddler(theTarget).getAttribute("tiddler");\n story.setDirty(title,false);\n var box = document.getElementById("notesContainer"+title);\n var textarea = document.getElementById("notesTextArea"+title);\n if(textarea.getAttribute("oldText")!=textarea.value && !hasClass(theTarget,"cancelNotesButton")){\n var suffix = box.getAttribute("suffix");\n var t = store.getTiddler(title+"-"+suffix);\n store.saveTiddler(title+"-"+suffix,title+"-"+suffix,textarea.value,config.options.txtUserName,new Date(),t?t.tags:box.getAttribute("tag"),t?t.fields:{});\n }\n story.refreshTiddler(title,1,true);\n autoSaveChanges(true);\n return false;\n },\n \n editNotes: function(box,tiddler){\n removeChildren(box);\n story.setDirty(tiddler,true);\n box.title = this.saveTitle;\n box.ondblclick = this.saveNotes;\n createTiddlyButton(box,this.cancelLabel,this.cancelLabel,this.saveNotes,"cancelNotesButton");\n createTiddlyButton(box,this.saveLabel,this.saveLabel,this.saveNotes,"saveNotesButton");\n wikify("!!"+box.getAttribute("heading")+"\sn",box);\n addClass(box,"editor");\n var wrapper1 = createTiddlyElement(null,"fieldset",null,"fieldsetFix");\n var wrapper2 = createTiddlyElement(wrapper1,"div");\n var e = createTiddlyElement(wrapper2,"textarea","notesTextArea"+tiddler);\n var v = store.getValue(tiddler+"-"+box.getAttribute("suffix"),"text");\n if(!v) \n v = config.options.chkPrefillNotes? store.getValue(tiddler,"text"):'';\n e.value = v;\n e.setAttribute("oldText",v);\n var rows = 10;\n var lines = v.match(/\sn/mg);\n var maxLines = Math.max(parseInt(config.options.txtMaxEditRows),5);\n if(lines != null && lines.length > rows)\n rows = lines.length + 5;\n rows = Math.min(rows,maxLines);\n e.setAttribute("rows",rows);\n box.appendChild(wrapper1);\n },\n \n editNotesButtonOnclick: function(e){\n var title = story.findContainingTiddler(this).getAttribute("tiddler");\n var box = document.getElementById("notesContainer"+title);\n config.macros.notes.editNotes(box,title);\n return false;\n },\n \n ondblclick : function(ev){\n e = ev? ev : window.event;\n var theTarget = resolveTarget(e);\n var title = story.findContainingTiddler(theTarget).getAttribute("tiddler");\n var box = document.getElementById("notesContainer"+title);\n config.macros.notes.editNotes(box,title);\n e.cancelBubble = true;\n if(e.stopPropagation) e.stopPropagation();\n return false;\n },\n \n handler : function(place,macroName,params,wikifier,paramString,tiddler){\n \n params = paramString.parseParams("anon",null,true,false,false);\n var heading = getParam(params,"heading",this.heading);\n var tag = getParam(params,"tag",this.tag);\n var suffix = getParam(params,"suffix",this.suffix);\n var box = createTiddlyElement(place,"div","notesContainer"+tiddler.title,"TiddlerNotes",null,{"source":tiddler.title,params:paramString,heading:heading,tag:tag,suffix:suffix});\n createTiddlyButton(box,this.editLabel,this.editLabel,this.editNotesButtonOnclick,"editNotesButton");\n wikify("!!"+heading+"\sn",box);\n box.title=this.editTitle;\n box.ondblclick = this.ondblclick;\n wikify("<<tiddler [["+tiddler.title+"-"+suffix+"]]>>",box);\n } \n};\n\nStory.prototype.old_notes_closeTiddler = Story.prototype.closeTiddler;\nStory.prototype.closeTiddler = function(title,animate,unused){\n if(story.isDirty(title)) {\n if(!confirm(config.macros.notes.cancelWarning.format([title])))\n return false;\n }\n return this.old_notes_closeTiddler.apply(this,arguments);\n}\n\nsetStylesheet(".TiddlerNotes {\sn"+ " background:#eee;\sn"+ " border:1px solid #ccc;\sn"+ " padding:10px;\sn"+ " margin:15px;\sn"+ "}\sn"+ "\sn"+ ".cancelNotesButton,.editNotesButton, .saveNotesButton {\sn"+ " float:right;\sn"+ " border:1px solid #ccc;\sn"+ " padding:2px 5px;\sn"+ "}\sn"+ "\sn"+ ".saveNotesButton{\sn"+ " margin-right:0.5em;\sn"+ "}\sn"+ "\sn"+ ".TiddlerNotes.editor textarea{\sn"+ " border:1px solid #ccc;\sn"+ "}","NotesPluginStyles");\n//!END-PLUGIN-CODE\n// %/\n
[<img[http://archives.library.wcsu.edu/relatedObjects/kennedy.jpg]]Two exhibits commemorating the 50th anniversaries of the election and inauguration of John F. Kennedy will be on display at Western Connecticut State University in the Ruth A. Haas Library.\n''The First:''\nTuesday, November 9, 2010, 10 a.m. to 4 p.m.\n''The Second:''\nThursday, Feb 3, 2011, 11 a.m. to 4 p.m.\nLight refreshments and a brief speaking program\n \nOn exhibit will be Jim Dyer's John F. Kennedy collection assembled over the past 46 years. This will be the last time this collection will be publicly exhibited. \n\nTwo One Day Only Exhibits, Free and Open to the Public\n
[<img[http://archives.library.wcsu.edu/relatedObjects/kennedy.jpg]]Exhibit and reception to mark the 50th anniversary of the inauguration of John F. Kennedy on display at Western Connecticut State University in the Ruth A. Haas Library.\n\nFeb 3, 2011, 11 a.m. to 4 p.m.\nLight refreshments and a brief speaking program\n \nOn exhibit was Jim Dyer's John F. Kennedy collection assembled over the past 46 years. \n\nImages from James Dyer's exhibit of Kennedy memorabilia:\nThursday, February, 3 2011, 11 a.m. to 4 p.m.\n\n[<img[http://archives.library.wcsu.edu/relatedObjects/dyer2/kennedy8.jpg]][>img[http://archives.library.wcsu.edu/relatedObjects/dyer2/kennedy1.jpg]]\n[<img[http://archives.library.wcsu.edu/relatedObjects/dyer2/kennedy2.jpg]][>img[http://archives.library.wcsu.edu/relatedObjects/dyer2/kennedy3.jpg]][<img[http://archives.library.wcsu.edu/relatedObjects/dyer2/kennedy4.jpg]]\n[>img[http://archives.library.wcsu.edu/relatedObjects/dyer2/kennedy5.jpg]][<img[http://archives.library.wcsu.edu/relatedObjects/dyer2/kennedy6.jpg]][>img[http://archives.library.wcsu.edu/relatedObjects/dyer2/kennedy7.jpg]]\n\n \n
/***\n|''Name:''|BreadCrumbsPlugin|\n|''Version:''|2.2.1 (05-July-2007)|\n|''Author:''|AlanHecht|\n|''Adapted By:''|[[Jack]]|\n|''Type:''|Plugin|\n!Description\nThis plugin creates an area at the top of the tiddler area that displays "breadcrumbs" of where you've been. This is especially useful for ~TWs using SinglePageMode by Eric Schulman.\n!Usage\nJust install the plugin and tag with systemConfig. Optionally position the following div in your PageTemplate to control the positioning of the breadcrumbs menu:\n{{{\n<div id='breadCrumbs'></div>\n}}}\n!Revision History\n* Original by AlanHecht\n* 2.0 Made 2.0.x compatible by [[Jack]]\n* Made 2.0.10 compatible (onstart paramifier)\n* Bugfix -> return false in onClickTiddlerLink()\n* 2.2 Made 2.2.x compatible\n!Code\n***/\n\n// // Use the following line to set the number of breadcrumbs to display before rotating them off the list.\n//{{{\nversion.extensions.breadCrumbs = {major: 2, minor: 2, revision: 1, date: new Date("Jul 5, 2007")};\nvar crumbsToShow = 7;\nvar breadCrumbs = [];\n\nonClickTiddlerLink_orig_breadCrumbs = onClickTiddlerLink;\nonClickTiddlerLink = function(e){\n onClickTiddlerLink_orig_breadCrumbs(e);\n breadcrumbsAdd(e);\n return false;\n}\n\nrestart_orig_breadCrumbs = restart;\nfunction restart() {\n invokeParamifier(params,"onstart");\n var defaultParams = store.getTiddlerText("DefaultTiddlers").parseParams("open",null,false);\n invokeParamifier(defaultParams,"onstart");\n breadCrumbs = [];\n breadcrumbsRefresh();\n window.scrollTo(0,0);\n return false;\n}\n\nfunction breadcrumbsAdd(e) {\n var uniqueCrumb = true;\n var crumbIndex = 0;\n if (!e) var e = window.event;\n var target = resolveTarget(e);\n var thisCrumb="[["+resolveTarget(e).getAttribute("tiddlyLink")+"]]";\n var lastInactiveCrumb = breadCrumbs.length -(breadCrumbs.length < crumbsToShow ? breadCrumbs.length : crumbsToShow);\n for(t=lastInactiveCrumb; t<breadCrumbs.length; t++)\n if(breadCrumbs[t] == thisCrumb) {\n uniqueCrumb = false;\n crumbIndex = t+1;\n }\n if(uniqueCrumb)\n breadCrumbs.push(thisCrumb);\n else\n breadCrumbs = breadCrumbs.slice(0,crumbIndex);\n breadcrumbsRefresh(); \n}\n\nfunction breadcrumbsRefresh() {\n \n if (!document.getElementById("breadCrumbs")) {\n // Create breadCrumbs div\n var ca = document.createElement("div");\n ca.id = "breadCrumbs";\n ca.style.visibility= "hidden";\n var targetArea = document.getElementById("tiddlerDisplay")||document.getElementById("storyDisplay");\n targetArea.parentNode.insertBefore(ca,targetArea);\n }\n\n var crumbArea = document.getElementById("breadCrumbs");\n crumbArea.style.visibility = "visible";\n removeChildren(crumbArea);\n createTiddlyButton(crumbArea,"Home",null,restart);\n crumbArea.appendChild(document.createTextNode(" > "));\n \n var crumbLine = "";\n var crumbCount = breadCrumbs.length;\n var firstCrumb = crumbCount -(crumbCount < crumbsToShow ? crumbCount : crumbsToShow);\n for(t=firstCrumb; t<crumbCount; t++) {\n if(t != firstCrumb)\n crumbLine += " > ";\n crumbLine += breadCrumbs[t];\n }\n wikify(crumbLine,crumbArea)\n}\n\n\n//}}}
/***\n|''Name:''|~TaggerPlugin|\n|''Version:''|1.0.1 (2006-06-01)|\n|''Source:''|http://tw.lewcid.org//#TaggerPlugin|\n|''Author:''|SaqImtiaz|\n|''Description:''|Provides a drop down listing current tiddler tags, and allowing toggling of tags.|\n|''Documentation:''|[[TaggerPluginDocumentation]]|\n|''Source Code:''|[[TaggerPluginSource]]|\n|''~TiddlyWiki:''|Version 2.0.8 or better|\n***/\n// /%\nconfig.tagger={defaults:{label:"Tags: ",tooltip:"Manage tiddler tags",taglist:"true",excludeTags:"",notags:"tiddler has no tags",aretags:"current tiddler tags:",toggletext:"add tags:"}};config.macros.tagger={};config.macros.tagger.arrow=(document.all?"âÂÅ":"âÂÅž");config.macros.tagger.handler=function(_1,_2,_3,_4,_5,_6){var _7=config.tagger.defaults;var _8=_5.parseParams("tagman",null,true);var _9=((_8[0].label)&&(_8[0].label[0])!=".")?_8[0].label[0]+this.arrow:_7.label+this.arrow;var _a=((_8[0].tooltip)&&(_8[0].tooltip[0])!=".")?_8[0].tooltip[0]:_7.tooltip;var _b=((_8[0].taglist)&&(_8[0].taglist[0])!=".")?_8[0].taglist[0]:_7.taglist;var _c=((_8[0].exclude)&&(_8[0].exclude[0])!=".")?(_8[0].exclude[0]).readBracketedList():_7.excludeTags.readBracketedList();if((_8[0].source)&&(_8[0].source[0])!="."){var _d=_8[0].source[0];}if(_d&&!store.getTiddler(_d)){return false;}var _e=function(e){if(!e){var e=window.event;}var _11=Popup.create(this);var _12=store.getTags();var _13=new Array();for(var i=0;i<_12.length;i++){_13.push(_12[i][0]);}if(_d){var _15=store.getTiddler(_d);_13=_15.tags.sort();}var _16=_6.tags.sort();var _17=function(_18,_19,_1a){var sp=createTiddlyElement(createTiddlyElement(_11,"li"),"span",null,"tagger");var _1c=createTiddlyButton(sp,_18,_1a+" '"+_19+"'",taggerOnToggle,"button","toggleButton");_1c.setAttribute("tiddler",_6.title);_1c.setAttribute("tag",_19);insertSpacer(sp);if(window.createTagButton_orig_mptw){createTagButton_orig_mptw(sp,_19)}else{createTagButton(sp,_19);}};createTiddlyElement(_11,"li",null,"listTitle",(_6.tags.length==0?_7.notags:_7.aretags));for(var t=0;t<_16.length;t++){_17("[x]",_16[t],"remove tag ");}createTiddlyElement(createTiddlyElement(_11,"li"),"hr");if(_b!="false"){createTiddlyElement(_11,"li",null,"listTitle",_7.toggletext);for(var i=0;i<_13.length;i++){if(!_6.tags.contains(_13[i])&&!_c.contains(_13[i])){_17("[ ]",_13[i],"add tag ");}}createTiddlyElement(createTiddlyElement(_11,"li"),"hr");}var _1f=createTiddlyButton(createTiddlyElement(_11,"li"),("Create new tag"),null,taggerOnToggle);_1f.setAttribute("tiddler",_6.title);if(_d){_1f.setAttribute("source",_d);}Popup.show(_11,false);e.cancelBubble=true;if(e.stopPropagation){e.stopPropagation();}return (false);};createTiddlyButton(_1,_9,_a,_e,"button","taggerDrpBtn");};window.taggerOnToggle=function(e){var tag=this.getAttribute("tag");var _22=this.getAttribute("tiddler");var _23=store.getTiddler(_22);if(!tag){var _24=prompt("Enter new tag:","");if(_24!=""&&_24!=null){var tag=_24;if(this.getAttribute("source")){var _26=store.getTiddler(this.getAttribute("source"));_26.tags.pushUnique(_24);}}else{return false;}}if(!_23||!_23.tags){store.saveTiddler(_22,_22,"",config.options.txtUserName,new Date(),tag);}else{if(_23.tags.find(tag)==null){_23.tags.push(tag);}else{if(!_24){_23.tags.splice(_23.tags.find(tag),1);}}store.saveTiddler(_23.title,_23.title,_23.text,_23.modifier,_23.modified,_23.tags);}story.refreshTiddler(_22,null,true);if(config.options.chkAutoSave){saveChanges();}return false;};setStylesheet(".tagger a.button {font-weight: bold;display:inline; padding:0px;}\sn"+".tagger #toggleButton {padding-left:2px; padding-right:2px; margin-right:1px; font-size:110%;}\sn"+"#nestedtagger {background:#2E5ADF; border: 1px solid #0331BF;}\sn"+".popup .listTitle {color:#000;}\sn"+"","TaggerStyles");window.lewcidTiddlerSwapTag=function(_27,_28,_29){for(var i=0;i<_27.tags.length;i++){if(_27.tags[i]==_28){_27.tags[i]=_29;return true;}}return false;};window.lewcidRenameTag=function(e){var tag=this.getAttribute("tag");var _2d=prompt("Rename tag '"+tag+"' to:",tag);if((_2d==tag)||(_2d==null)){return false;}if(store.tiddlerExists(_2d)){if(confirm(config.messages.overwriteWarning.format([_2d.toString()]))){story.closeTiddler(_2d,false,false);}else{return null;}}tagged=store.getTaggedTiddlers(tag);if(tagged.length!=0){for(var j=0;j<tagged.length;j++){lewcidTiddlerSwapTag(tagged[j],tag,_2d);}}if(store.tiddlerExists(tag)){store.saveTiddler(tag,_2d);}if(document.getElementById("tiddler"+tag)){var _2f=document.getElementById(story.idPrefix+tag);var _30=story.positionTiddler(_2f);var _31=document.getElementById(story.container);story.closeTiddler(tag,false,false);story.createTiddler(_31,_30,_2d,null);story.saveTiddler(_2d);}if(config.options.chkAutoSave){saveChanges();}return false;};window.onClickTag=function(e){if(!e){var e=window.event;}var _34=resolveTarget(e);var _35=(!isNested(_34));if((Popup.stack.length>1)&&(_35==true)){Popup.removeFrom(1);}else{if(Popup.stack.length>0&&_35==false){Popup.removeFrom(0);}}var _36=(_35==false)?"popup":"nestedtagger";var _37=createTiddlyElement(document.body,"ol",_36,"popup",null);Popup.stack.push({root:this,popup:_37});var tag=this.getAttribute("tag");var _39=this.getAttribute("tiddler");if(_37&&tag){var _3a=store.getTaggedTiddlers(tag);var _3b=[];var li,r;for(r=0;r<_3a.length;r++){if(_3a[r].title!=_39){_3b.push(_3a[r].title);}}var _3d=config.views.wikified.tag;if(_3b.length>0){var _3e=createTiddlyButton(createTiddlyElement(_37,"li"),_3d.openAllText.format([tag]),_3d.openAllTooltip,onClickTagOpenAll);_3e.setAttribute("tag",tag);createTiddlyElement(createTiddlyElement(_37,"li"),"hr");for(r=0;r<_3b.length;r++){createTiddlyLink(createTiddlyElement(_37,"li"),_3b[r],true);}}else{createTiddlyText(createTiddlyElement(_37,"li",null,"disabled"),_3d.popupNone.format([tag]));}createTiddlyElement(createTiddlyElement(_37,"li"),"hr");var h=createTiddlyLink(createTiddlyElement(_37,"li"),tag,false);createTiddlyText(h,_3d.openTag.format([tag]));createTiddlyElement(createTiddlyElement(_37,"li"),"hr");var _40=createTiddlyButton(createTiddlyElement(_37,"li"),("Rename tag '"+tag+"'"),null,lewcidRenameTag);_40.setAttribute("tag",tag);}Popup.show(_37,false);e.cancelBubble=true;if(e.stopPropagation){e.stopPropagation();}return (false);};if(!window.isNested){window.isNested=function(e){while(e!=null){var _42=document.getElementById("contentWrapper");if(_42==e){return true;}e=e.parentNode;}return false;};}config.shadowTiddlers.TaggerPluginDocumentation="The documentation is available [[here.|http://tw.lewcid.org/#TaggerPluginDocumentation]]";config.shadowTiddlers.TaggerPluginSource="The uncompressed source code is available [[here.|http://tw.lewcid.org/#TaggerPluginSource]]";\n// %/
<!--{{{-->\n\n<div id='sidebar'>\n <div id='sidebarOptions' refresh='content' tiddler='SideBarOptions'></div>\n <div id='mainmenu' refresh='content' tiddler='MainMenu'></div>\n <div macro='showWhen zw.loggedIn'>\n <div id='sidebarTabs' refresh='macro' force='true' macro='slider chkSideBarTabs SideBarTabs "index" "display lists of tiddlers"'></div></div>\n</div>\n\n<div id='header' class='header'>\n <div id="banner" refresh='content' tiddler="Banner"></div>\n <div class='headerShadow'>\n <span class='siteTitle' refresh='content' tiddler='SiteTitle'></span><br />\n <span class='siteSubtitle' refresh='content' tiddler='SiteSubtitle'></span>\n </div>\n</div>\n\n<div id='displayArea'>\n <div id='messageArea'></div>\n <div id='tiddlerDisplay'></div>\n</div>\n\n<div id='contentFooter' refresh='content' tiddler='contentFooter'></div>\n\n<!--}}}-->\n\n
The Archives and Special Collections Library is open to researchers by appointment. Regular hours are:\n''8AM-2:30PM Mon, Tue, Thur and Fri and from 8AM-4PM Wed.'' \nOther times may be arranged with the archivist.
<html>\n<h3>Deed of Gift Form/Agreement</h3>\n<div>\n<p>Archives and Special Collections<br />Ruth A. Haas Library<br /> Western Connecticut State University<br /> 181 White Street<br /> Danbury, CT 06801<br /> (203) 837-8992<br />\n\n</p>\n\n<div class="center">\n<form method="post" action="/cgi-bin/formmail.cgi">\n\n\n<legend>Contact Info</legend><br/>\n<label for="From" style="font-weight: ;">Your Name:</label>\n<br />\n<input name="From" size="41" />\n<br />\n<label for="Email" style="font-weight: ;">Your e-mail address:</label>\n\n<br />\n<input name="Email" size="41" />\n<br />\n<label for="StreetAddress" style="font-weight: ;">Your street address:</label>\n<br />\n<input name="StreetAdress" size="41" />\n<br />\n<label for="CityState" style="font-weight: ;">Your City, State:</label>\n<br />\n<input name="CityState" size="41" />\n<br />\n<label for="Zip" style="font-weight: ;">Zip:</label>\n<br />\n<input name="Zip" size="41" />\n\n<br />\n<div>The above individual owns and desires to give, or is empowered as legal agent for the above to give to the Archives and Special Collections Library at the Haas Library, 181 White St. Danbury, CT the materials described below.</div>\n\n<legend> Information about the materials </legend><br/>\n<p>Description of materials or inventory, please be a detailed as possible: (attach additional sheets to the paper copy of this form)</p>\n<p>\n<i>For example: </i>\n<ul>\n<li>\n<i>2 boxes of correspondence, 1980-1999</i>\n\n</li>\n<li>\n<i>1 box of photographs, 1990s</i>\n</li>\n</ul>\n</p>\n<p>\n<label for="description" style="font-weight: ;"></label>\n<textarea rows="15" name="description" cols="67">\n</textarea>\n</p>\n<p>Researchers who meet the requirements set by Archives and Special Collections may have full access to this collection with the exception of the restriction(s) or conditions stated below:</p>\n<p>\n<label for="restriction" style="font-weight: ;"></label>\n<input type="radio" value="no_restrictions" name="restriction">No Restrictions</input>\n\n</p>\n<p>\n<input type="radio" name="restriction" value="restrictions_apply">Some Restrictions (please specify below:)</input>\n</p>\n<p>\n<i>For example:</i>\n</p>\n<ul>\n<li>\n<i>Materials regarding financial matters are closed to researchers until 2029</i>\n</li>\n</ul>\n<p>\n<label for="restriction_note" style="font-weight: ;"></label>\n\n<textarea rows="9" name="restriction_note" cols="67">\n</textarea>\n</p>\n\n\n<p>Materials deemed by the Archivist to be duplicates, damaged, or otherwise not pertinent to the donated collection should be:</p>\n<label for="discard" style="font-weight: ;"></label>\n<input type="radio" value="discard_unwanted" name="discard">Discarded </input>\n<p>\n<input type="radio" name="discard" value="return_to_donor">Returned to Donor</input>\n</p>\n<p>\n<input type="radio" name="discard" value="other">Other (describe)</input>\n\n</p>\n<p>\n<label for="discardNote" style="font-weight: ;"></label>\n<textarea rows="45" name="discardNote" cols="67">\n</textarea>\n</p>\n<p>I assign and convey irrevocably the legal title and all literary rights or copyright which I may have to the described property to the Western Connecticut State University Archives & Special Collections Library (the Archives). I understand that the Archives may digitize this material for access via the World Wide Web or for other forms of electronic distribution. Furthermore, I agree that researchers who meet the requirements set by the Archives may have full access to this collection with the exception of the restriction(s) or conditions stated above.</p>\n<p>By checking "agree" below, you understand and accept the terms of this Deed of Gift Form/Agreement. The WCSU Archives and Special Collections Library at the Haas Library will not accept any materials unless the donor agrees to the terms of this agreement.</p>\n<p>\n<label for="agree" style="font-weight: ;"></label>\n<input type="checkbox" value="Agree" name="agreement">Agree</input>\n</p>\n\n<p>Also please print and sign this form (when submitting electronically, type your name below). By signing this form, you formally transfer custody of the materials described in this form to the WCSU Archives and Special Collections Library at the Haas Library. </p>\n<p>\n<label for="signature" style="font-weight: ;">Signed: </label>\n<textarea rows="3" name="signature" cols="67">\n</textarea>\n<label for="dateAgree" style="font-weight: ;">Date: </label>\n<input type="text" name="dateAgree" size="20" />\n</p>\n<p>The staff will prepare a descriptive finding aid at the folder level which will be made available to researchers. The archivists at WCSU will offer administrative reference for the materials.</p>\n<p>If you have questions, please call 837-8992. Thank you for your interest in preserving these materials. </p>\n\n<p>\n<input type="submit" value="Submit Form" />\n<input type="reset" value="Cancel" />\n</p>\n</fieldset>\n<input type="hidden" name="SUBJECT" value="Deed of Gift Agreement" />\n<input type="hidden" name="SENDTO" value="stevensb@wcsu.edu" />\n</form>\n</div>\n<p>\n<a href="http://archives.library.wcsu.edu/forms/deedOfGiftNew.pdf">Use "print-only" version</a>\n</p>\n</html>
[>img[http://archives.library.wcsu.edu/features/features.gif]]\nThanks to the research of Sean Pelletier, a WCSU history major, this previously unidentified portrait is of 1st Lieutenant Charles Stoll of the 7th Illinois Cavalry Regiment, M company. The photo was probably taken in 1862. \n\nThe image is from a photo album in the Alfred Geddes Papers which are housed in the WCSU Archives.\n\n[[click to view a larger version of the image|http://archives.library.wcsu.edu/collections/MS008/album/album_37a/view?display=large]]\n[[view an index of the Archive's Alfred Geddes collecion|http://archives.library.wcsu.edu/findingaids/geddes.xml]]
//{{{\nconfig.formatters.unshift( {\n name: "inlinetabs",\n match: "\s\s<tabs",\n lookaheadRegExp: /(?:<tabs (.*)>\sn)((?:.|\sn)*?)(?:\sn<\s/tabs>)/mg,\n handler: function(w)\n {\n this.lookaheadRegExp.lastIndex = w.matchStart;\n var lookaheadMatch = this.lookaheadRegExp.exec(w.source)\n if(lookaheadMatch && lookaheadMatch.index == w.matchStart)\n {\n var cookie = lookaheadMatch[1];\n var wrapper = createTiddlyElement(null,"div",null,cookie);\n var tabset = createTiddlyElement(wrapper,"div",null,"tabset");\n tabset.setAttribute("cookie",cookie);\n var validTab = false;\n var firstTab = '';\n var tabregexp = /(?:<tab (.*)>)(?:(?:\sn)?)((?:.|\sn)*?)(?:<\s/tab>)/mg;\n while((m = tabregexp.exec(lookaheadMatch[2])) != null)\n {\n if (firstTab == '') firstTab = m[1];\n var tab = createTiddlyButton(tabset,m[1],m[1],story.onClickInlineTab,"tab tabUnselected");\n tab.setAttribute("tab",m[1]);\n tab.setAttribute("content",m[2]);\n tab.title = m[1];\n if(config.options[cookie] == m[1])\n validTab = true;\n }\n if(!validTab)\n config.options[cookie] = firstTab;\n w.output.appendChild(wrapper);\n story.switchInlineTab(tabset,config.options[cookie]);\n w.nextMatch = this.lookaheadRegExp.lastIndex;\n }\n }\n})\n\nStory.prototype.switchInlineTab = function(tabset,tab)\n{\n var cookie = tabset.getAttribute("cookie");\n var theTab = null\n var nodes = tabset.childNodes;\n for(var t=0; t<nodes.length; t++)\n if(nodes[t].getAttribute && nodes[t].getAttribute("tab") == tab)\n {\n theTab = nodes[t];\n theTab.className = "tab tabSelected";\n }\n else\n nodes[t].className = "tab tabUnselected"\n if(theTab)\n {\n if(tabset.nextSibling && tabset.nextSibling.className == "tabContents")\n tabset.parentNode.removeChild(tabset.nextSibling);\n var tabContent = createTiddlyElement(null,"div",null,"tabContents");\n tabset.parentNode.insertBefore(tabContent,tabset.nextSibling);\n wikify(theTab.getAttribute("content"),tabContent);\n if(cookie)\n {\n config.options[cookie] = tab;\n saveOptionCookie(cookie);\n }\n }\n}\n \nStory.prototype.onClickInlineTab = function(e)\n{\n story.switchInlineTab(this.parentNode,this.getAttribute("tab"));\n return false;\n}\n//}}}
Happy Holidays\n\n<<tagging News>>
/***\n|''Name:''|AccordionMenuPlugin|\n|''Description:''|Turn an unordered list into an accordion style menu|\n|''Author:''|Saq Imtiaz ( lewcid@gmail.com )|\n|''Source:''|http://tw.lewcid.org/#AccordionMenuPlugin|\n|''Code Repository:''|http://tw.lewcid.org/svn/plugins|\n|''Version:''|2.0|\n|''Date:''|03/11/2007|\n|''License:''|[[Creative Commons Attribution-ShareAlike 3.0 License|http://creativecommons.org/licenses/by-sa/3.0/]]|\n|''~CoreVersion:''|2.2.5|\n!!Usage:\n* put {{{<<accordion>>}}} on the line after your unordered list\n\n!!Customizing:\n* customize the css via the shadow tiddler StyleSheetAccordionMenuPlugin\n* or give the list a custom class by passing the classes as parameters to the macro.\n** Eg: {{{<<accordion ClassName1 ClassName2>>}}}\n\n!!Examples:\n*[[AccordionMenuPluginDemo]]\n\n***/\n// /%\n//!BEGIN-PLUGIN-CODE\nconfig.macros.accordion={\n dropchar : " \su00BB",\n handler : function(place,macroName,params,wikifier,paramString,tiddler){\n list = findRelated(place.lastChild,"UL","tagName","previousSibling");\n if (!list)\n return;\n addClass(list,"accordion");\n if (params.length){\n addClass(list,paramString);\n }\n this.fixLinks(list.childNodes); \n },\n\n fixLinks : function(els){\n for (var i=0; i<els.length; i++){\n if(els[i].tagName.toLowerCase()=="li"){\n var link = findRelated(els[i].firstChild,"A","tagName","nextSibling");\n if(!link){\n var ih = els[i].firstChild.data;\n els[i].removeChild(els[i].firstChild);\n link = createTiddlyElement(null,"a",null,null,ih+this.dropchar,{href:"javascript:;"});\n els[i].insertBefore(link,els[i].firstChild);\n }\n else{\n link.firstChild.data = link.firstChild.data + this.dropchar;\n removeClass(link,"tiddlyLinkNonExisting");\n }\n link.onclick = this.show;\n }\n }\n },\n \n show : function(e){\n var list = this.parentNode.parentNode;\n var els = list.childNodes;\n for (var i=0; i<els.length; i++){\n removeClass(els[i],"accordion-active");\n }\n addClass(this.parentNode,"accordion-active");\n } \n};\n\nconfig.shadowTiddlers["StyleSheetAccordionMenuPlugin"] = "/*{{{*/\sn"+\n "ul.accordion, ul.accordion li, ul.accordion li ul {margin:0; padding:0; list-style-type:none;text-align:left;}\sn"+\n "ul.accordion li ul {display:none;}\sn"+\n "ul.accordion li.accordion-active ul {display:block;}\sn"+\n "\sn"+\n "ul.accordion li.accordion-active a {cursor:default;}\sn"+\n "ul.accordion li.accordion-active ul li a{cursor:pointer;}\sn"+\n "\sn"+\n "ul.accordion a {display:block; padding:0.5em;}\sn"+\n "ul.accordion li a.tiddlyLink, ul.accordion li a.tiddlyLinkNonExisting, ul.accordion li a {font-weight:bold;}\sn"+\n "ul.accordion li a {background:#0066aa; color:#FFF; border-bottom:1px solid #fff;}\sn"+\n "ul.accordion li.accordion-active a, ul.accordion li a:hover {background:#00558F;color:#FFF;}\sn"+\n "\sn"+\n "ul.accordion li ul li{display:inline-block;overflow:hidden;}\sn"+\n "ul.accordion li.accordion-active ul li {background:#eff3fa; color:#000; padding:0em;}\sn"+\n "ul.accordion li.accordion-active ul li div {padding:1em 1.5em; background:#eff3fa;}\sn"+\n "ul.accordion li.accordion-active ul a{background:#eff3fa; color:#000; padding:0.5em 0.5em 0.5em 1.0em;border:none;}\sn"+\n "ul.accordion li.accordion-active ul a:hover {background:#e0e8f5; color:#000;}\sn" +\n "/*}}}*/";\n \n store.addNotification("StyleSheetAccordionMenuPlugin",refreshStyles);\n //!END-PLUGIN-CODE\n// %/
<script>\nvar Pan = new Object();\nPan.MAXW=545;\nPan.TARGET = "one";\nPan.DISTANCE=1;\nPan.TIME = 40;\nfunction img_pan(url)\n { \n var D = new Image();\n var Doc = document.body;\n D.onload=function()\n { \n var Size = new Array(this.offsetWidth, this.offsetHeight);\n var E = new Image();\n E.src = url;\n var F = document.getElementById(Pan.TARGET);\n if (Size[0] > Pan.MAXW)\n {\n F.style.width = Pan.MAXW + "px";\n F.style.maxWidth="545px";\n F.style.height= "232px";\n F.style.position="relative";\n F.style.overflow = "hidden";\n E.style.position="relative";\n E.style.left="0px";\n var Direction = Pan.DISTANCE * -1;\n setInterval(function()\n {\n var X = parseInt(E.style.left);\n if (X < (Pan.MAXW - Size[0]) || X > 0) Direction = Direction * -1;\n E.style.left = (X + Direction) + "px";\n \n }, Pan.TIME * 2);\n }\n F.innerHTML = "";\n F.appendChild(E);\n }\n D.src=url;\n D.style.position="absolute";\n D.style.left="-1500px";\n D.style.top="-1500px";\n Doc.appendChild(D);\n }\nimg_pan('http://archives.library.wcsu.edu/relatedObjects/class2.jpg');\n</script>\n<html>\n <div id="one" style="margin-top: 0; padding-top:0;">one</div>\n <div style="position: relative;top: -232px;">\n <img src="http://archives.library.wcsu.edu/images/wcsuNew.jpg"/>\n </div>\n</html>
/***\n|Name:|TagglyTaggingPlugin|\n|Description:|tagglyTagging macro is a replacement for the builtin tagging macro in your ViewTemplate|\n|Version:|3.3.1 ($Rev: 9828 $)|\n|Date:|$Date: 2009-06-03 21:38:41 +1000 (Wed, 03 Jun 2009) $|\n|Source:|http://mptw.tiddlyspot.com/#TagglyTaggingPlugin|\n|Author:|Simon Baird <simon.baird@gmail.com>|\n|License:|http://mptw.tiddlyspot.com/#TheBSDLicense|\n!Notes\nSee http://mptw.tiddlyspot.com/#TagglyTagging\n***/\n//{{{\n\nmerge(String.prototype,{\n\n parseTagExpr: function(debug) {\n\n if (this.trim() == "")\n return "(true)";\n\n var anyLogicOp = /(!|&&|\s|\s||\s(|\s))/g;\n var singleLogicOp = /^(!|&&|\s|\s||\s(|\s))$/;\n\n var spaced = this.\n // because square brackets in templates are no good\n // this means you can use [(With Spaces)] instead of [[With Spaces]]\n replace(/\s[\s(/g," [[").\n replace(/\s)\s]/g,"]] "). \n // space things out so we can use readBracketedList. tricky eh?\n replace(anyLogicOp," $1 ");\n\n var expr = "";\n\n var tokens = spaced.readBracketedList(false); // false means don't uniq the list. nice one JR!\n\n for (var i=0;i<tokens.length;i++)\n if (tokens[i].match(singleLogicOp))\n expr += tokens[i];\n else\n expr += "tiddler.tags.contains('%0')".format([tokens[i].replace(/'/,"\s\s'")]); // fix single quote bug. still have round bracket bug i think\n\n if (debug)\n alert(expr);\n\n return '('+expr+')';\n }\n\n});\n\nmerge(TiddlyWiki.prototype,{\n getTiddlersByTagExpr: function(tagExpr,sortField) {\n\n var result = [];\n\n var expr = tagExpr.parseTagExpr();\n\n store.forEachTiddler(function(title,tiddler) {\n if (eval(expr))\n result.push(tiddler);\n });\n\n if(!sortField)\n sortField = "title";\n\n result.sort(function(a,b) {return a[sortField] < b[sortField] ? -1 : (a[sortField] == b[sortField] ? 0 : +1);});\n \n return result;\n }\n});\n\nconfig.taggly = {\n\n // for translations\n lingo: {\n labels: {\n asc: "\su2191", // down arrow\n desc: "\su2193", // up arrow\n title: "title",\n modified: "modified",\n created: "created",\n show: "+",\n hide: "-",\n normal: "normal",\n group: "group",\n commas: "commas",\n sitemap: "sitemap",\n numCols: "cols\su00b1", // plus minus sign\n label: "Tagged as '%0':",\n exprLabel: "Matching tag expression '%0':",\n excerpts: "excerpts",\n descr: "descr",\n slices: "slices",\n contents: "contents",\n sliders: "sliders",\n noexcerpts: "title only",\n noneFound: "(none)"\n },\n\n tooltips: {\n title: "Click to sort by title",\n modified: "Click to sort by modified date",\n created: "Click to sort by created date",\n show: "Click to show tagging list",\n hide: "Click to hide tagging list",\n normal: "Click to show a normal ungrouped list",\n group: "Click to show list grouped by tag",\n sitemap: "Click to show a sitemap style list",\n commas: "Click to show a comma separated list",\n numCols: "Click to change number of columns",\n excerpts: "Click to show excerpts",\n descr: "Click to show the description slice",\n slices: "Click to show all slices",\n contents: "Click to show entire tiddler contents",\n sliders: "Click to show tiddler contents in sliders",\n noexcerpts: "Click to show entire title only"\n },\n\n tooDeepMessage: "* //sitemap too deep...//"\n },\n\n config: {\n showTaggingCounts: true,\n listOpts: {\n // the first one will be the default\n sortBy: ["title","modified","created"],\n sortOrder: ["asc","desc"],\n hideState: ["show","hide"],\n listMode: ["normal","group","sitemap","commas"],\n numCols: ["1","2","3","4","5","6"],\n excerpts: ["noexcerpts","excerpts","descr","slices","contents","sliders"]\n },\n valuePrefix: "taggly.",\n excludeTags: ["excludeLists","excludeTagging"],\n excerptSize: 50,\n excerptMarker: "/%"+"%/",\n siteMapDepthLimit: 25\n },\n\n getTagglyOpt: function(title,opt) {\n var val = store.getValue(title,this.config.valuePrefix+opt);\n return val ? val : this.config.listOpts[opt][0];\n },\n\n setTagglyOpt: function(title,opt,value) {\n // create it silently if it doesn't exist\n if (!store.tiddlerExists(title)) {\n store.saveTiddler(title,title,config.views.editor.defaultText.format([title]),config.options.txtUserName,new Date(),"");\n\n // <<tagglyTagging expr:"...">> creates a tiddler to store its display settings\n // Make those tiddlers less noticeable by tagging as excludeSearch and excludeLists\n // Because we don't want to hide real tags, check that they aren't actually tags before doing so\n // Also tag them as tagglyExpression for manageability\n // (contributed by RA)\n if (!store.getTaggedTiddlers(title).length) {\n store.setTiddlerTag(title,true,"excludeSearch");\n store.setTiddlerTag(title,true,"excludeLists");\n store.setTiddlerTag(title,true,"tagglyExpression");\n }\n }\n\n // if value is default then remove it to save space\n return store.setValue(title, this.config.valuePrefix+opt, value == this.config.listOpts[opt][0] ? null : value);\n },\n\n getNextValue: function(title,opt) {\n var current = this.getTagglyOpt(title,opt);\n var pos = this.config.listOpts[opt].indexOf(current);\n // supposed to automagically don't let cols cycle up past the number of items\n // currently broken in some situations, eg when using an expression\n // lets fix it later when we rewrite for jquery\n // the columns thing should be jquery table manipulation probably\n var limit = (opt == "numCols" ? store.getTaggedTiddlers(title).length : this.config.listOpts[opt].length);\n var newPos = (pos + 1) % limit;\n return this.config.listOpts[opt][newPos];\n },\n\n toggleTagglyOpt: function(title,opt) {\n var newVal = this.getNextValue(title,opt);\n this.setTagglyOpt(title,opt,newVal);\n }, \n\n createListControl: function(place,title,type) {\n var lingo = config.taggly.lingo;\n var label;\n var tooltip;\n var onclick;\n\n if ((type == "title" || type == "modified" || type == "created")) {\n // "special" controls. a little tricky. derived from sortOrder and sortBy\n label = lingo.labels[type];\n tooltip = lingo.tooltips[type];\n\n if (this.getTagglyOpt(title,"sortBy") == type) {\n label += lingo.labels[this.getTagglyOpt(title,"sortOrder")];\n onclick = function() {\n config.taggly.toggleTagglyOpt(title,"sortOrder");\n return false;\n }\n }\n else {\n onclick = function() {\n config.taggly.setTagglyOpt(title,"sortBy",type);\n config.taggly.setTagglyOpt(title,"sortOrder",config.taggly.config.listOpts.sortOrder[0]);\n return false;\n }\n }\n }\n else {\n // "regular" controls, nice and simple\n label = lingo.labels[type == "numCols" ? type : this.getNextValue(title,type)];\n tooltip = lingo.tooltips[type == "numCols" ? type : this.getNextValue(title,type)];\n onclick = function() {\n config.taggly.toggleTagglyOpt(title,type);\n return false;\n }\n }\n\n // hide button because commas don't have columns\n if (!(this.getTagglyOpt(title,"listMode") == "commas" && type == "numCols"))\n createTiddlyButton(place,label,tooltip,onclick,type == "hideState" ? "hidebutton" : "button");\n },\n\n makeColumns: function(orig,numCols) {\n var listSize = orig.length;\n var colSize = listSize/numCols;\n var remainder = listSize % numCols;\n\n var upperColsize = colSize;\n var lowerColsize = colSize;\n\n if (colSize != Math.floor(colSize)) {\n // it's not an exact fit so..\n upperColsize = Math.floor(colSize) + 1;\n lowerColsize = Math.floor(colSize);\n }\n\n var output = [];\n var c = 0;\n for (var j=0;j<numCols;j++) {\n var singleCol = [];\n var thisSize = j < remainder ? upperColsize : lowerColsize;\n for (var i=0;i<thisSize;i++) \n singleCol.push(orig[c++]);\n output.push(singleCol);\n }\n\n return output;\n },\n\n drawTable: function(place,columns,theClass) {\n var newTable = createTiddlyElement(place,"table",null,theClass);\n var newTbody = createTiddlyElement(newTable,"tbody");\n var newTr = createTiddlyElement(newTbody,"tr");\n for (var j=0;j<columns.length;j++) {\n var colOutput = "";\n for (var i=0;i<columns[j].length;i++) \n colOutput += columns[j][i];\n var newTd = createTiddlyElement(newTr,"td",null,"tagglyTagging"); // todo should not need this class\n wikify(colOutput,newTd);\n }\n return newTable;\n },\n\n createTagglyList: function(place,title,isTagExpr) {\n switch(this.getTagglyOpt(title,"listMode")) {\n case "group": return this.createTagglyListGrouped(place,title,isTagExpr); break;\n case "normal": return this.createTagglyListNormal(place,title,false,isTagExpr); break;\n case "commas": return this.createTagglyListNormal(place,title,true,isTagExpr); break;\n case "sitemap":return this.createTagglyListSiteMap(place,title,isTagExpr); break;\n }\n },\n\n getTaggingCount: function(title,isTagExpr) {\n // thanks to Doug Edmunds\n if (this.config.showTaggingCounts) {\n var tagCount = config.taggly.getTiddlers(title,'title',isTagExpr).length;\n if (tagCount > 0)\n return " ("+tagCount+")";\n }\n return "";\n },\n\n getTiddlers: function(titleOrExpr,sortBy,isTagExpr) {\n return isTagExpr ? store.getTiddlersByTagExpr(titleOrExpr,sortBy) : store.getTaggedTiddlers(titleOrExpr,sortBy);\n },\n\n getExcerpt: function(inTiddlerTitle,title,indent) {\n if (!indent)\n indent = 1;\n\n var displayMode = this.getTagglyOpt(inTiddlerTitle,"excerpts");\n var t = store.getTiddler(title);\n\n if (t && displayMode == "excerpts") {\n var text = t.text.replace(/\sn/," ");\n var marker = text.indexOf(this.config.excerptMarker);\n if (marker != -1) {\n return " {{excerpt{<nowiki>" + text.substr(0,marker) + "</nowiki>}}}";\n }\n else if (text.length < this.config.excerptSize) {\n return " {{excerpt{<nowiki>" + t.text + "</nowiki>}}}";\n }\n else {\n return " {{excerpt{<nowiki>" + t.text.substr(0,this.config.excerptSize) + "..." + "</nowiki>}}}";\n }\n }\n else if (t && displayMode == "contents") {\n return "\sn{{contents indent"+indent+"{\sn" + t.text + "\sn}}}";\n }\n else if (t && displayMode == "sliders") {\n return "<slider slide>\sn{{contents{\sn" + t.text + "\sn}}}\sn</slider>";\n }\n else if (t && displayMode == "descr") {\n var descr = store.getTiddlerSlice(title,'Description');\n return descr ? " {{excerpt{" + descr + "}}}" : "";\n }\n else if (t && displayMode == "slices") {\n var result = "";\n var slices = store.calcAllSlices(title);\n for (var s in slices)\n result += "|%0|<nowiki>%1</nowiki>|\sn".format([s,slices[s]]);\n return result ? "\sn{{excerpt excerptIndent{\sn" + result + "}}}" : "";\n }\n return "";\n },\n\n notHidden: function(t,inTiddler) {\n if (typeof t == "string") \n t = store.getTiddler(t);\n return (!t || !t.tags.containsAny(this.config.excludeTags) ||\n (inTiddler && this.config.excludeTags.contains(inTiddler)));\n },\n\n // this is for normal and commas mode\n createTagglyListNormal: function(place,title,useCommas,isTagExpr) {\n\n var list = config.taggly.getTiddlers(title,this.getTagglyOpt(title,"sortBy"),isTagExpr);\n\n if (this.getTagglyOpt(title,"sortOrder") == "desc")\n list = list.reverse();\n\n var output = [];\n var first = true;\n for (var i=0;i<list.length;i++) {\n if (this.notHidden(list[i],title)) {\n var countString = this.getTaggingCount(list[i].title);\n var excerpt = this.getExcerpt(title,list[i].title);\n if (useCommas)\n output.push((first ? "" : ", ") + "[[" + list[i].title + "]]" + countString + excerpt);\n else\n output.push("*[[" + list[i].title + "]]" + countString + excerpt + "\sn");\n\n first = false;\n }\n }\n\n return this.drawTable(place,\n this.makeColumns(output,useCommas ? 1 : parseInt(this.getTagglyOpt(title,"numCols"))),\n useCommas ? "commas" : "normal");\n },\n\n // this is for the "grouped" mode\n createTagglyListGrouped: function(place,title,isTagExpr) {\n var sortBy = this.getTagglyOpt(title,"sortBy");\n var sortOrder = this.getTagglyOpt(title,"sortOrder");\n\n var list = config.taggly.getTiddlers(title,sortBy,isTagExpr);\n\n if (sortOrder == "desc")\n list = list.reverse();\n\n var leftOvers = []\n for (var i=0;i<list.length;i++)\n leftOvers.push(list[i].title);\n\n var allTagsHolder = {};\n for (var i=0;i<list.length;i++) {\n for (var j=0;j<list[i].tags.length;j++) {\n\n if (list[i].tags[j] != title) { // not this tiddler\n\n if (this.notHidden(list[i].tags[j],title)) {\n\n if (!allTagsHolder[list[i].tags[j]])\n allTagsHolder[list[i].tags[j]] = "";\n\n if (this.notHidden(list[i],title)) {\n allTagsHolder[list[i].tags[j]] += "**[["+list[i].title+"]]"\n + this.getTaggingCount(list[i].title) + this.getExcerpt(title,list[i].title) + "\sn";\n\n leftOvers.setItem(list[i].title,-1); // remove from leftovers. at the end it will contain the leftovers\n\n }\n }\n }\n }\n }\n\n var allTags = [];\n for (var t in allTagsHolder)\n allTags.push(t);\n\n var sortHelper = function(a,b) {\n if (a == b) return 0;\n if (a < b) return -1;\n return 1;\n };\n\n allTags.sort(function(a,b) {\n var tidA = store.getTiddler(a);\n var tidB = store.getTiddler(b);\n if (sortBy == "title") return sortHelper(a,b);\n else if (!tidA && !tidB) return 0;\n else if (!tidA) return -1;\n else if (!tidB) return +1;\n else return sortHelper(tidA[sortBy],tidB[sortBy]);\n });\n\n var leftOverOutput = "";\n for (var i=0;i<leftOvers.length;i++)\n if (this.notHidden(leftOvers[i],title))\n leftOverOutput += "*[["+leftOvers[i]+"]]" + this.getTaggingCount(leftOvers[i]) + this.getExcerpt(title,leftOvers[i]) + "\sn";\n\n var output = [];\n\n if (sortOrder == "desc")\n allTags.reverse();\n else if (leftOverOutput != "")\n // leftovers first...\n output.push(leftOverOutput);\n\n for (var i=0;i<allTags.length;i++)\n if (allTagsHolder[allTags[i]] != "")\n output.push("*[["+allTags[i]+"]]" + this.getTaggingCount(allTags[i]) + this.getExcerpt(title,allTags[i]) + "\sn" + allTagsHolder[allTags[i]]);\n\n if (sortOrder == "desc" && leftOverOutput != "")\n // leftovers last...\n output.push(leftOverOutput);\n\n return this.drawTable(place,\n this.makeColumns(output,parseInt(this.getTagglyOpt(title,"numCols"))),\n "grouped");\n\n },\n\n // used to build site map\n treeTraverse: function(title,depth,sortBy,sortOrder,isTagExpr) {\n\n var list = config.taggly.getTiddlers(title,sortBy,isTagExpr);\n\n if (sortOrder == "desc")\n list.reverse();\n\n var indent = "";\n for (var j=0;j<depth;j++)\n indent += "*"\n\n var childOutput = "";\n\n if (depth > this.config.siteMapDepthLimit)\n childOutput += indent + this.lingo.tooDeepMessage;\n else\n for (var i=0;i<list.length;i++)\n if (list[i].title != title)\n if (this.notHidden(list[i].title,this.config.inTiddler))\n childOutput += this.treeTraverse(list[i].title,depth+1,sortBy,sortOrder,false);\n\n if (depth == 0)\n return childOutput;\n else\n return indent + "[["+title+"]]" + this.getTaggingCount(title) + this.getExcerpt(this.config.inTiddler,title,depth) + "\sn" + childOutput;\n },\n\n // this if for the site map mode\n createTagglyListSiteMap: function(place,title,isTagExpr) {\n this.config.inTiddler = title; // nasty. should pass it in to traverse probably\n var output = this.treeTraverse(title,0,this.getTagglyOpt(title,"sortBy"),this.getTagglyOpt(title,"sortOrder"),isTagExpr);\n return this.drawTable(place,\n this.makeColumns(output.split(/(?=^\s*\s[)/m),parseInt(this.getTagglyOpt(title,"numCols"))), // regexp magic\n "sitemap"\n );\n },\n\n macros: {\n tagglyTagging: {\n handler: function (place,macroName,params,wikifier,paramString,tiddler) {\n var parsedParams = paramString.parseParams("tag",null,true);\n var refreshContainer = createTiddlyElement(place,"div");\n\n // do some refresh magic to make it keep the list fresh - thanks Saq\n refreshContainer.setAttribute("refresh","macro");\n refreshContainer.setAttribute("macroName",macroName);\n\n var tag = getParam(parsedParams,"tag");\n var expr = getParam(parsedParams,"expr");\n\n if (expr) {\n refreshContainer.setAttribute("isTagExpr","true");\n refreshContainer.setAttribute("title",expr);\n refreshContainer.setAttribute("showEmpty","true");\n }\n else {\n refreshContainer.setAttribute("isTagExpr","false");\n if (tag) {\n refreshContainer.setAttribute("title",tag);\n refreshContainer.setAttribute("showEmpty","true");\n }\n else {\n refreshContainer.setAttribute("title",tiddler.title);\n refreshContainer.setAttribute("showEmpty","false");\n }\n }\n this.refresh(refreshContainer);\n },\n\n refresh: function(place) {\n var title = place.getAttribute("title");\n var isTagExpr = place.getAttribute("isTagExpr") == "true";\n var showEmpty = place.getAttribute("showEmpty") == "true";\n removeChildren(place);\n addClass(place,"tagglyTagging");\n var countFound = config.taggly.getTiddlers(title,'title',isTagExpr).length\n if (countFound > 0 || showEmpty) {\n var lingo = config.taggly.lingo;\n config.taggly.createListControl(place,title,"hideState");\n if (config.taggly.getTagglyOpt(title,"hideState") == "show") {\n createTiddlyElement(place,"span",null,"tagglyLabel",\n isTagExpr ? lingo.labels.exprLabel.format([title]) : lingo.labels.label.format([title]));\n config.taggly.createListControl(place,title,"title");\n config.taggly.createListControl(place,title,"modified");\n config.taggly.createListControl(place,title,"created");\n config.taggly.createListControl(place,title,"listMode");\n config.taggly.createListControl(place,title,"excerpts");\n config.taggly.createListControl(place,title,"numCols");\n config.taggly.createTagglyList(place,title,isTagExpr);\n if (countFound == 0 && showEmpty)\n createTiddlyElement(place,"div",null,"tagglyNoneFound",lingo.labels.noneFound);\n }\n }\n }\n }\n },\n\n // todo fix these up a bit\n styles: [\n"/*{{{*/",\n"/* created by TagglyTaggingPlugin */",\n".tagglyTagging { padding-top:0.5em; }",\n".tagglyTagging li.listTitle { display:none; }",\n".tagglyTagging ul {",\n" margin-top:0px; padding-top:0.5em; padding-left:2em;",\n" margin-bottom:0px; padding-bottom:0px;",\n"}",\n".tagglyTagging { vertical-align: top; margin:0px; padding:0px; }",\n".tagglyTagging table { margin:0px; padding:0px; }",\n".tagglyTagging .button { visibility:hidden; margin-left:3px; margin-right:3px; }",\n".tagglyTagging .button, .tagglyTagging .hidebutton {",\n" color:[[ColorPalette::TertiaryLight]]; font-size:90%;",\n" border:0px; padding-left:0.3em;padding-right:0.3em;",\n"}",\n".tagglyTagging .button:hover, .hidebutton:hover, ",\n".tagglyTagging .button:active, .hidebutton:active {",\n" border:0px; background:[[ColorPalette::TertiaryPale]]; color:[[ColorPalette::TertiaryDark]];",\n"}",\n".selected .tagglyTagging .button { visibility:visible; }",\n".tagglyTagging .hidebutton { color:[[ColorPalette::Background]]; }",\n".selected .tagglyTagging .hidebutton { color:[[ColorPalette::TertiaryLight]] }",\n".tagglyLabel { color:[[ColorPalette::TertiaryMid]]; font-size:90%; }",\n".tagglyTagging ul {padding-top:0px; padding-bottom:0.5em; margin-left:1em; }",\n".tagglyTagging ul ul {list-style-type:disc; margin-left:-1em;}",\n".tagglyTagging ul ul li {margin-left:0.5em; }",\n".editLabel { font-size:90%; padding-top:0.5em; }",\n".tagglyTagging .commas { padding-left:1.8em; }",\n"/* not technically tagglytagging but will put them here anyway */",\n".tagglyTagged li.listTitle { display:none; }",\n".tagglyTagged li { display: inline; font-size:90%; }",\n".tagglyTagged ul { margin:0px; padding:0px; }",\n".excerpt { color:[[ColorPalette::TertiaryDark]]; }",\n".excerptIndent { margin-left:4em; }",\n"div.tagglyTagging table,",\n"div.tagglyTagging table tr,",\n"td.tagglyTagging",\n" {border-style:none!important; }",\n".tagglyTagging .contents { border-bottom:2px solid [[ColorPalette::TertiaryPale]]; padding:0 1em 1em 0.5em;",\n" margin-bottom:0.5em; }",\n".tagglyTagging .indent1 { margin-left:3em; }",\n".tagglyTagging .indent2 { margin-left:4em; }",\n".tagglyTagging .indent3 { margin-left:5em; }",\n".tagglyTagging .indent4 { margin-left:6em; }",\n".tagglyTagging .indent5 { margin-left:7em; }",\n".tagglyTagging .indent6 { margin-left:8em; }",\n".tagglyTagging .indent7 { margin-left:9em; }",\n".tagglyTagging .indent8 { margin-left:10em; }",\n".tagglyTagging .indent9 { margin-left:11em; }",\n".tagglyTagging .indent10 { margin-left:12em; }",\n".tagglyNoneFound { margin-left:2em; color:[[ColorPalette::TertiaryMid]]; font-size:90%; font-style:italic; }",\n"/*}}}*/",\n ""].join("\sn"),\n\n init: function() {\n merge(config.macros,this.macros);\n config.shadowTiddlers["TagglyTaggingStyles"] = this.styles;\n store.addNotification("TagglyTaggingStyles",refreshStyles);\n }\n};\n\nconfig.taggly.init();\n\n//}}}\n\n/***\nInlineSlidersPlugin\nBy Saq Imtiaz\nhttp://tw.lewcid.org/sandbox/#InlineSlidersPlugin\n\n// syntax adjusted to not clash with NestedSlidersPlugin\n// added + syntax to start open instead of closed\n\n***/\n//{{{\nconfig.formatters.unshift( {\n name: "inlinesliders",\n // match: "\s\s+\s\s+\s\s+\s\s+|\s\s<slider",\n match: "\s\s<slider",\n // lookaheadRegExp: /(?:\s+\s+\s+\s+|<slider) (.*?)(?:>?)\sn((?:.|\sn)*?)\sn(?:====|<\s/slider>)/mg,\n lookaheadRegExp: /(?:<slider)(\s+?) (.*?)(?:>)\sn((?:.|\sn)*?)\sn(?:<\s/slider>)/mg,\n handler: function(w) {\n this.lookaheadRegExp.lastIndex = w.matchStart;\n var lookaheadMatch = this.lookaheadRegExp.exec(w.source)\n if(lookaheadMatch && lookaheadMatch.index == w.matchStart ) {\n var btn = createTiddlyButton(w.output,lookaheadMatch[2] + " "+"\su00BB",lookaheadMatch[2],this.onClickSlider,"button sliderButton");\n var panel = createTiddlyElement(w.output,"div",null,"sliderPanel");\n panel.style.display = (lookaheadMatch[1] == '+' ? "block" : "none");\n wikify(lookaheadMatch[3],panel);\n w.nextMatch = lookaheadMatch.index + lookaheadMatch[0].length;\n }\n },\n onClickSlider : function(e) {\n if(!e) var e = window.event;\n var n = this.nextSibling;\n n.style.display = (n.style.display=="none") ? "block" : "none";\n return false;\n }\n});\n\n//}}}\n
<html>\n<h3>Books donated by the Brooklyn Historical Society to the Haas Library's Archives and Special Collections Library</h3>\n<table border="1">\n<tr>\n<th>TITLE</th>\n<th>AUTHOR</th>\n\n<th>RECORD #(BIBLIO)</th>\n<th>LOCATION</th>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2934275">"Days of old" remembered : a historical discourse, delivered in the Congregational Church, Brookfield, Conn., July 16th, 1876 / by A.C. Pierce, pastor</a>\n</td>\n<td>Pierce A. C. (Asa Clinton), 1819-1888</td>\n<td>b29342752</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3078169">"Remember the days of old" : a discourse delivered in the First Congregaational Church, Norwich / by H.P. Arms ... December 3, 1876, on the fourtieth anniversary of his settlement .</a>\n</td>\n<td>Arms, Hiram P. (Hiram Phelps), 1799-1882</td>\n<td>b30781693</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2716687">"Set thee up way-marks" : historical sermon delivered in the Second Baptist Church, Suffield, Conn., on the seventy-fifth anniversary of its history, Sunday, May 23, 1880 / by J.R. Stubbert</a>\n</td>\n\n<td>Stubbert, John Roman, 1838-1916</td>\n<td>b27166879</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2715952">"The days that are past" : a historical discourse delivered by E.E. Rankin at the First Congregational Church, Fairfield, Conn., Thanksgiving Day, Nov. 24, 1870</a>\n</td>\n<td>Rankin, Edward Erastus, 1820-1889</td>\n<td>b27159528</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2633641">1650-1900. Mattabeseck. Middletown. A description of the exercises connected with the two hundred and fiftieth anniversary, October 10 and 11, 1900</a>\n</td>\n<td>Middletown (Conn.)</td>\n<td>b26336418</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2275765">175th anniversary of the First Congregational Church : Meriden, Conn. October 22d, 23d and 24th, 1904</a>\n\n</td>\n<td>First Congregational Church (Meriden, Conn.)</td>\n<td>b2275765x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2549749">1779-1879 : centennial commemoration of the ride of General Israel Putnam, at Greenwich, Conn., February 26, 1779 : observed February 22, 1879</a>\n</td>\n<td>\n</td>\n<td>b25497492</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092052">1781. Groton Heights and New London. Letters from Zabdiel Rogers and Thomas Mumford</a>\n</td>\n<td>Rogers, Zabdiel</td>\n<td>b30920528</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3079260">1782--1882 Centennial celebrations in two parts / edited by A.B. Davenport</a>\n</td>\n<td>Davenport, A. B. (Amzi Benedict), b. 1817</td>\n<td>b30792605</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092640">1814. New London. Pettypaug Point</a>\n</td>\n<td>\n</td>\n\n<td>b30926403</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2513451">1841-1916 seventy-fifth anniversary of Portland, Connecticut</a>\n</td>\n<td>\n</td>\n<td>b25134516</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3077255">250th anniversary of the Congregational Church, December 22, 1885. : Historical address, / by Rev. Samuel Scoville poem / by Rev. John G. Davenport</a>\n</td>\n<td>Scoville, Samuel, 1834-1902</td>\n<td>b30772552</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093648">77 Broad Street Guilford, Connecticut</a>\n</td>\n\n<td>Hart, Lucy Bishop</td>\n<td>b30936482</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1748291">A biographical history of the county of Litchfield, Connecticut: comprising biographical sketches of distinguished natives and residents of the county together with complete lists of the judges of the county court, justices of the quorum, county commissioners, judges of probate, sheriffs, senators, &c. from the organization of the county to the present time. By Payne Kenyon Kilbourne</a>\n</td>\n<td>Kilbourne, Payne Kenyon, 1815-1859</td>\n<td>b17482914</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2349680">A brief historical notice of the town of Ridgefield, Connecticut</a>\n</td>\n<td>\n</td>\n<td>b23496800</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3077172">A brief historical sketch of the Church of Christ, in Chaplin, Ct., : including the confession of faith and covenants, adopted by said church: : also, the names of all persons admitted as members, since its organization. / Published by order of the Church</a>\n</td>\n<td>Church of Christ (Chaplin, Conn.)</td>\n<td>b30771729</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2700178">A brief history of the First Baptist Church of Hartford, Conn. : with the articles of faith, the church covenant, general regulations, and list of members. June 1, 1897</a>\n</td>\n<td>First Baptist Church (Hartford, Conn.)</td>\n\n<td>b27001787</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2213724">A brief history of the First Church of Christ in Middletown, Connecticut for two centuries and a half, 1668-1918 / Azel Washburn Hazen. Illustrated</a>\n</td>\n<td>Hazen, Azel Washburn, 1841-1928</td>\n<td>b22137245</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1058647">A brief history of the formation of the North Church in Hartford, Connecticut : together with a summary of Christian doctrine, and a form of covenant, adopted by the Church and publicly read on the admission of members</a>\n</td>\n<td>\n</td>\n<td>b10586477</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2422052">A brief history of the town of Norfolk : from 1738 to 1844, and a summary of events and transactions which have occurred in this town ... collected from the public records of the town and other correct documents ... to which is added a description of the town, incidents, list of officers, and other interesting matter / by Auren Roys</a>\n</td>\n\n<td>Roys, Auren</td>\n<td>b24220528</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3047073">A brief record of noted clergymen and missionaries supplied to the world by the first Episcopal Church, of Middletown, Conn. : formerly Christ Church, but now Holy Trinity Church / published for the benefit of missions</a>\n</td>\n<td>\n</td>\n<td>b30470730</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2444451">A catalogue of Barkhamsted men : who served in the various wars, 1775 to 1865 / Compiled, arranged and published by Wm. Wallace Lee, (a native of the town) Meriden, Conn. 1897</a>\n</td>\n<td>Lee, W. W. (William Wallace), 1828-</td>\n<td>b24444510</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092127">A Catalogue of the deaths in the Second Society of Groton, : from the year seventeen hundred and seventy, to eighteen hundred and fifteen. : [Two lines of Scripture text]</a>\n\n</td>\n<td>\n</td>\n<td>b30921272</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1762773">A catalogue of the names of the first Puritan settlers of the colony of Connecticut with the time of their arrival in the colony, and their standing in society, together with their place of residence, as far as can be discovered by the records. Collected from the state and town records, by R. R. Hinman</a>\n</td>\n<td>Hinman, R. R. (Royal Ralph), 1785-1868</td>\n<td>b17627734</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1757673">A census of Newington, Connecticut : taken according to households in 1776 / by Josiah Willard together with some documents relating to the early history of the parish, ed. by Edwin Stanley Welles</a>\n</td>\n<td>Willard, Josiah, 1739-1818</td>\n<td>b17576738</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3037720">A centennial discourse delivered January 26th, 1864 : the one hundredth anniversary of the Mt. Carmel Congregational Church, Hamden, Conn. / by D.H. Thayer</a>\n</td>\n<td>Thayer, D. H. (David Haven)</td>\n<td>b30377201</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3045695">A centennial discourse, delivered in the First Congregational Church, Mansfield Centre, July 1876 / by K.B. Glidden including a history of the First Congregational Church and a sketch of the early settlement, ecclesiastical and civil history of the town</a>\n</td>\n<td>Glidden, K. B. (Kiah Bailey), 1819-1891</td>\n\n<td>b30456952</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1100748">A centennial historical sketch of the town of New London / by W. H. Starr, secretary of the New London Historical Society</a>\n</td>\n<td>Starr, William Holt, b. 1808</td>\n<td>b11007485</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1248884">A century in Hartford, being the history of the Hartford County Mutual Fire Insurance Company in relation to the hundred years of local and national progress and experiences and the world development in invention and discoveries-- the age of marvels, written by Charles W. Burpee</a>\n</td>\n<td>Burpee, Charles W. (Charles Winslow), b. 1859</td>\n<td>b12488847</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3072539">A century sermon : delivered before the Church and Society, at Bethel, Ct., Nov. 30, 1860 / by L.P. Hickok .</a>\n</td>\n\n<td>Hickok, Laurens P. (Laurens Perseus), 1798-1888</td>\n<td>b30725392</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3072042">A century sermon, delivered at Danbury January 1, A.D. 1801. : Being the first day of the nineteenth century, since the Christian era. In which is exhibited a brief view of the most remarkable events of the eighteenth century: with a sketch of the history of the town of Danbury, from the first settlement, to the present time / by Thomas Robbins .</a>\n</td>\n<td>Robbins, Thomas, 1777-1856</td>\n<td>b30720424</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1345254">A complete history of Connecticut : civil and ecclesiastical, from the emigration of its first planters, from, England, in the year 1630, to the year 1764, and to the close of the Indian Wars / by Benjamin Trumbull with an appendix containing the original patent of New England</a>\n</td>\n<td>Trumbull, Benjamin, 1735-1820</td>\n<td>b1345254x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1793184">A confession of faith, covenant, constitution and rules of practice adopted by the Congregational church in East Haven. To which is added a catalogue of the officers and members of the church, from the year 1755, to December, 1833</a>\n\n</td>\n<td>Old Stone Church (East Haven, Conn.)</td>\n<td>b17931848</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1107109">A corner stone of colonial commerce, by John A. Stoughton</a>\n</td>\n<td>Stoughton, John A. (John Alden), 1848-1915</td>\n<td>b11071096</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3073120">A deserted village. By Henry Sherman Boutell</a>\n</td>\n<td>Boutell, Henry Sherman, 1856-1926</td>\n<td>b30731203</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1273741">A digest of the early Connecticut probate records / compiled by Charles William Manwaring</a>\n</td>\n<td>Manwaring, Charles William, 1829-1905</td>\n<td>b12737410</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2422105">A discourse delivered at the dedication of the Congregational house of worship in North Stonington, Conn., June 27th, 1848 / by Myron N. Morris</a>\n</td>\n<td>Morris, Myron N. (Myron Newton), 1810-1885</td>\n\n<td>b24221053</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2423083">A discourse delivered February 25, 1849 : on the completion of a century from the organization of the Congregational Church in Andover, Connecticut / by William B. Sprague .</a>\n</td>\n<td>Sprague, William Buell, 1795-1876</td>\n<td>b24230832</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3028704">A discourse delivered on the fiftieth anniversary of the organization of the Third Congregational Church, Guilford, Conn., Nov. 26, 1893 / by the pastor of the church Rev. George W. Banks, together with biographical sketches of the pastors of the Third Church</a>\n</td>\n<td>Third Congregational Church (Guilford, Conn.)</td>\n<td>b30287042</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2703878">A discourse delivered on the two hundredth anniversary of the First Church of Christ, in New London, Oct. 19th, 1870 / by Thomas P. Field with the other addresses on that occasion, and some account of the celebration</a>\n</td>\n\n<td>Field, Thomas P. (Thomas Power), 1814-1894</td>\n<td>b27038786</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3044816">A discourse on concluding a pastorate of forty years ... delivered in Madison, Conn. October 29, 1893 / by James A. Gallup</a>\n</td>\n<td>Gallup, James A</td>\n<td>b30448165</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2590325">A discourse on the completion of fifty years service in the ministry of the gospel : delivered by request in the North Church, New Haven, February 25th, 1855 / by Samuel Merwin</a>\n</td>\n<td>Merwin, Samuel, 1782-1856</td>\n<td>b25903251</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2704949">A discourse on the history of the First Church of Christ, in Middletown, Conn., for the century ending July 4, 1876 : delivered July 9, 1876, by the Rev. A.W. Hazen, Pastor</a>\n\n</td>\n<td>Hazen, Azel Washburn, 1841-1928</td>\n<td>b27049498</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092235">A discourse on the nature and influence of Godly fear : containing also a minister s address to his church and congregation, together with a few interesting events in their history, written in a time when he was taken off from preaching by bodily infirmities, publicly read, Lord s-day, January 31, 1802 / by Charles Backus</a>\n</td>\n<td>Backus, Charles, 1749-1803</td>\n<td>b30922355</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1258782">A gazetteer of the states of Connecticut and Rhode-Island : written with care and impartiality, from original and authentic materials : consisting of two parts ... : with an accurate and improved map of each state / by John C. Pease and John M. Niles</a>\n</td>\n<td>Pease, John C. (John Chauncey), 1782-1859</td>\n<td>b12587825</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b2573777">A genealogical register of the inhabitants of the town of Litchfield, Conn. : from the settlement of the town, A.D. 1720, to the year 1800, whereby one knowing his father s name, may perhaps ascertain who were some of his antecedent progenitors / Collected from the records of said town, probate records of wills, distributions, etc., and from other sources, by George C. Woodruff, 1845 compared with town records of births, marriages, and deaths, and when corrected the entries checked.--G.C.W., May, 1865</a>\n</td>\n<td>Woodruff, George C. (George Catlin), 1805-1885</td>\n<td>b25737776</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3073132">A Genealogist s history of Redding, Conn. / Lester Card</a>\n</td>\n<td>Card, Lester</td>\n\n<td>b3073132x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1119977">A general history of Connecticut : from its first settlement under George Fenwick, to its latest period of amity with Great Britain prior to the revolution including a description of the country, and many curious and interesting anecdotes with an appendix, pointing out the causes of the rebellion in America together with the particular part taken by the people of Connecticut in its promotion / by a gentleman of the province, London, 1781 to which is added a supplement, verifying many important statements made by the author illustrated with eight engravings</a>\n</td>\n<td>Peters, Samuel, 1735-1826</td>\n<td>b11199775</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2577879">A gossip about a country parish of the hills and its people / ed. by its pastor, G.F. Goodenough, a century after its birth, Ellsworth, Litchfield County, Connecticut</a>\n</td>\n<td>Goodenough, G. F. (Giles Frederick)</td>\n<td>b25778791</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2681358">A half century of the South Congregational Church, New Britain, Conn. : 1842-1892</a>\n</td>\n\n<td>South Congregational Church (New Britain, Conn.)</td>\n<td>b26813580</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1720718">A half century sermon delivered in the First Society in Lisbon, December 5th, A.D. 1854 / by Levi Nelson</a>\n</td>\n<td>Nelson, Levi, 1779-1855</td>\n<td>b17207186</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2275756">A half-century history of the Farmington Avenue Congregational Church : organized as the Pearl Street Congregational Church in Hartford, Connecticut, 1851-1901</a>\n</td>\n<td>Love, William DeLoss, 1851-1918</td>\n<td>b22757569</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1720782">A historical address : delivered at the commemoration of the one hundredth anniversary of the first annual town meeting of the town of Salisbury, October 20, A.D. 1841 / by Samuel Church</a>\n\n</td>\n<td>Church, Samuel, 1785-1854</td>\n<td>b17207824</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1752462">A historical address, before the Congregational Church in Salisbury, Conn., at their first centennial celebration, November 20, 1844. By Adam Reid, pastor of the church. Delivered by request</a>\n</td>\n<td>Reid, Adam, 1808-1878</td>\n<td>b17524623</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1724790">A historical discourse : preached Oct. 27, 1895, in the meeting-house on Canterbury Green in recognition of its renovation / by Rev. Andrew J. Hetrick</a>\n</td>\n<td>Hetrick, Andrew J</td>\n<td>b17247901</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3092259">A historical discourse delivered at the re-dedication of the Long Society : or Second Congregtional Church of Preston, Conn., Feb. 17, 1889 / by Rev. R. P. Stanton</a>\n</td>\n<td>Stanton, R. P. (Robert Livingston), 1810-1885</td>\n<td>b30922598</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1234742">A historical discourse delivered in Norwich, Connecticut, September 7, 1859 : at the bi-centennial celebration of the settlement of the town / by Daniel Coit Gilman</a>\n</td>\n<td>Gilman, Daniel Coit, 1831-1908</td>\n\n<td>b12347425</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2442575">A historical discourse delivered in the Congregational Church of Ashford, Conn., January 17, 1864 / by Thomas Dutton</a>\n</td>\n<td>Dutton, Thomas</td>\n<td>b24425758</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2570923">A historical discourse, delivered at the hundredth anniversary of the organization of the Second Congregational Church, Norwich, Conn., July 24, 1860 : with an appendix / by Alvan Bond</a>\n</td>\n<td>Bond, Alvan, 1793-1882</td>\n<td>b25709239</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1113087">A historical discourse, delivered by request before the citizens of New Haven, April 25, 1838 : the two hundredth anniversary of the first settlement of the town and colony / by James L. Kingsley</a>\n</td>\n\n<td>Kingsley, James Luce, 1778-1852</td>\n<td>b11130878</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1030131">A historical discourse, delivered by request, before the citizens of Farmington, November 4, 1840, in commemoration of the original settlement of the ancient town, in 1640. By Noah Porter, Jr</a>\n</td>\n<td>Porter, Noah, 1811-1892</td>\n<td>b10301318</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2571217">A historical discourse, delivered in Abington, January 30, 1853 : at the close of the first century of Abington Church and Society with an appendix / by H.B. Smith</a>\n</td>\n<td>Smith, Henry Boynton, 1815-1877</td>\n<td>b25712172</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2711497">A historical sermon : delivered on the occasion of the one hundred and fiftieth anniversary of the First Congregational Church, Lebanon, Conn. / by John C. Nichols</a>\n\n</td>\n<td>Nichols, John C. (John Cutler), 1801-1868</td>\n<td>b27114971</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2622951">A historical sermon preached in Christ Church, Hartford : Sunday morning, February 9, 1902 / by Hermann Lilienthal</a>\n</td>\n<td>Lonsdale, Herman Lilienthal, 1858-1940</td>\n<td>b26229511</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2719009">A historical sketch of the Congregational Church and Society of Buckingham, Conn. (formerly Eastbury)</a>\n</td>\n<td>Gardner, Austin</td>\n<td>b27190092</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3038391">A historical sketch of the Congregational Church in Gilead, Conn., from the first settlement of the town by the English : read before the Tolland Association / by Josiah A. Mack</a>\n</td>\n<td>Mack, Josiah A</td>\n<td>b30383912</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2703149">A historical sketch of the parish of the Church of the Holy Trinity (formerly Christ Church), Middletown, Conn. / by a member of the parish</a>\n</td>\n<td>\n</td>\n\n<td>b27031494</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3079273">A historical sketch of Universalism in Norwich, Conn. : a sermon delivered before the Universalist Society in that place, on the 5th of May, 1844 / by R.O. Williams</a>\n</td>\n<td>Williams, Rufus Orland, 1805-1889</td>\n<td>b30792733</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2349922">A historical sketch together with the faith and covenant of the Fourth Congregational Church in Hartford : and a catalogue of members, July, 1841</a>\n</td>\n<td>Fourth Congregational Church (Hartford, Conn.)</td>\n<td>b23499229</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1742951">A history of Bristol, Connecticut. by Epaphroditus Peck</a>\n</td>\n\n<td>Peck, Epaphroditus, 1860-1938</td>\n<td>b17429511</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2274190">A history of Christ Episcopal Church in Guilford, Connecticut : an address delivered ... in September, 1894, on the occasion of the 150th anniversary of the parish</a>\n</td>\n<td>Andrews, William Given, 1835-1912</td>\n<td>b22741902</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1399721">A history of Connecticut / by Elias B. Sanford</a>\n</td>\n<td>Sanford, Elias B. (Elias Benjamin), b. 1843</td>\n<td>b1399721x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1593020">A history of Connecticut : its people and institutions / by George L. Clark</a>\n\n</td>\n<td>Clark, George L. (George Larkin), 1849-1919</td>\n<td>b15930208</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1120765">A history of Cornwall, Connecticut, a typical New England town / by Edward C. Starr</a>\n</td>\n<td>Starr, Edward C. (Edward Comfort), 1844-1941</td>\n<td>b11207656</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2704964">A history of Grace Episcopal Church, Hartford, Connecticut : 1863-1938 / [Nelson R. Burr]</a>\n</td>\n<td>Burr, Nelson R. (Nelson Rollin), 1904-1994</td>\n<td>b27049644</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1411498">A history of Newgate of Connecticut, at Simsbury, now East Granby : its insurrections and massacres, the imprisonment of the Tories in the Revolution, and the working of its mines also, some account of the state prison, at Wethersfield / by Richard H. Phelps</a>\n</td>\n<td>Phelps, Richard H. (Richard Harvey)</td>\n<td>b14114987</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1771466">A history of religious education in Connecticut to the middle of the nineteenth century, by George Stewart, jr., PH.D</a>\n</td>\n<td>Stewart, George, b. 1892</td>\n\n<td>b17714667</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2444731">A history of the city of Bridgeport, Connecticut / by Rev. Samuel Orcutt</a>\n</td>\n<td>Orcutt, Samuel, 1824-1893</td>\n<td>b24447316</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1743804">A history of the copper mines and Newgate Prison, at Granby, Conn. : also, of the captivity of Daniel Hayes, of Granby, by the Indians, in 1707 / by Noah A. Phelps</a>\n</td>\n<td>Phelps, Noah Amherst, 1788-1872</td>\n<td>b17438044</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093714">A history of the cutlery industry in the Connecticut valley</a>\n</td>\n\n<td>Hoesen Taber, Martha van</td>\n<td>b30937140</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1025538">A history of the First Church and society of Branford, Connecticut, 1644-1919 / by J. Rupert Simonds</a>\n</td>\n<td>Simonds, J. Rupert (Jesse Rupert)</td>\n<td>b10255382</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2960244">A history of the First Church, the pastor s address, and the ceremony of the laying of the corner-stone, Sunday, June 21st, 1908</a>\n</td>\n<td>First Congregational Church (Danbury, Conn.)</td>\n<td>b29602440</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2289848">A history of the plantation of Menunkatuck and of the original town of Guilford, Connecticut : comprising the present towns of Guilford and Madison / written largely from the manuscripts of Ralph Dunning Smyth by Bernard Christian Steiner</a>\n\n</td>\n<td>Steiner, Bernard Christian, 1867-1926</td>\n<td>b22898487</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2551647">A history of the towns of Haddam and East-Haddam / by David D. Field</a>\n</td>\n<td>Field, David D. (David Dudley), 1781-1867</td>\n<td>b25516474</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093597">A history of the towns of Haddam and East-Haddam / by David D. Field</a>\n</td>\n<td>Field, David D. (David Dudley), 1781-1867</td>\n<td>b30935970</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3047304">A leaf of Milford history : a Thanksgiving sermon preached in the First Church, Milford, Conn., Nov. 25, 1858 / by Jonathan Brace</a>\n</td>\n<td>Brace, J. (Jonathan), 1810-1877</td>\n<td>b30473044</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3083818">A letter from the Rev. Thomas Hooker of Hartford : in answer to the complaints of Gov. Winthrop of Massachusetts, against Connecticut</a>\n</td>\n<td>Hooker, Thomas, 1586-1647</td>\n\n<td>b30838186</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092611">A list of all those who are known to have been members of the First Church of Christ in New London from the beginning to January 1, 1901</a>\n</td>\n<td>First Church of Christ (New London, Conn.)</td>\n<td>b30926117</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2518889">A list of all those who have been members of the First Congregational Church, in New-London, between the first day of October, 1670, and the first day of May, 1840</a>\n</td>\n<td>First Church of Christ (New London, Conn.)</td>\n<td>b25188896</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2589653">A memorial of the observance of the 50th anniversary of the consecration St. Paul s church New Haven</a>\n</td>\n\n<td>St. Paul s Church (New Haven, Conn.)</td>\n<td>b25896532</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092827">A memorial sermon: preached by the pastor, Rev. J.L. Willard, June 3, 1877, in the Westville Congregational church, New Haven, Conn</a>\n</td>\n<td>Willard, J. L</td>\n<td>b30928278</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1593927">A modern history of New London County, Connecticut editor-in-chief, Benjamin Tinkham Marshall</a>\n</td>\n<td>Marshall, Benjamin Tinkham, b. 1872</td>\n<td>b15939273</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3077174">A New Year s sermon : delivered at Chaplin, Conn., Saturday, January 3rd, 1864 / by Francis Williams</a>\n\n</td>\n<td>Williams, Francis</td>\n<td>b30771742</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2658055">A Quaker s visit to Hartford in the year 1676 / edited by Frank D. Andrews</a>\n</td>\n<td>\n</td>\n<td>b2658055x</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2589553">A quarter-century sermon : preached in the First Baptist Church in New Haven / by Dryden Phelps, D.D., pastor</a>\n</td>\n<td>Phelps, S. Dryden (Sylvanus Dryden), 1816-1895</td>\n<td>b25895539</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1155261">A record and documentary history of Simsbury / by Lucius I. Barber, M.D. 1643-1888</a>\n</td>\n<td>Barber, Lucius I. (Lucius Israel), 1806-1889</td>\n<td>b1155261x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2422078">A reminiscence of past events : a semi-centennial sermon, preached in Thompson (Conn.), April 22, 1846 / by Daniel Dow</a>\n</td>\n<td>Dow, Daniel, 1772-1849</td>\n\n<td>b24220784</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1712497">A retrospect : two sermons preached on Lord s Day, October 24, 1841, on occasion of the close of the quarter of a century in his ministry / by Isaac Parsons</a>\n</td>\n<td>Parsons, Isaac, 1790-1868</td>\n<td>b17124979</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1723946">A retrospect on the ministry and church of Saybrook : a half century sermon / preached on Lord s Day, September 22, 1833 by Frederick Wm. Hotchkiss</a>\n</td>\n<td>Hotchkiss, Frederick William, 1762-1844</td>\n<td>b17239461</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2932989">A review of some matters of interest in the history of the First Society of Stratfield and Bridgeport / compiled by the clerk, Richard B. Cogswell, and published by the First Congregational Society of Bridgeport. 1898</a>\n</td>\n\n<td>First Congregational Church (Bridgeport, Conn.)</td>\n<td>b29329899</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2423193">A sermon delivered at the dedication of the South Congregational Church in Durham, Conn., December 29, 1847 / by William C. Fowler</a>\n</td>\n<td>Fowler, William Chauncey, 1793-1881</td>\n<td>b24231939</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3083610">A sermon delivered March 29, 1839 / by Thomas F. Davies And published by request of the Congregational Society in Green s Farms</a>\n</td>\n<td>Davies, Thomas F. (Thomas Frederick), 1793-1865</td>\n<td>b30836104</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2589548">A Sermon delivered on the twenty-fifth anniversary of the author s ministry : in the Third Congregational Church, New Haven, July 25, 1858 / by Elisha Lord Cleaveland</a>\n\n</td>\n<td>Cleaveland, Elisha Lord, 1806-1866</td>\n<td>b25895485</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3083748">A sermon preached at Sherman, Conn. Sunday, Apr. 1, 1894</a>\n</td>\n<td>McKnight, Harry Chapman, b. 1859</td>\n<td>b30837480</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092840">A sermon preached in St. James Church, New London, on the twenty-fifth anniversary of his settlement, January 1, 1860 / by Robert A. Hallam</a>\n</td>\n<td>Hallam, Robert A. (Robert Alexander), 1807-1877</td>\n<td>b30928400</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3092841">A sermon preached in St. James Church, New-London, on the occasion of the re-opening of said church : after extensive alterations and improvements, Feb. 28, 1836 / by Robert A. Hallam</a>\n</td>\n<td>Hallam, Robert A. (Robert Alexander), 1807-1877</td>\n<td>b30928412</td>\n<td>CT\nRoom</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1723444">A sermon, delivered Lord s day, January 6, 1828, the one hundredth anniversary ot the church in Somers, [Conn.]</a>\n</td>\n<td>Strong, William L. (William Lightbourn), 1782-1859</td>\n\n<td>b1723444x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1723491">A sermon, preached 14 Aug., 1851 ... the 40th anniversary of his ordination</a>\n</td>\n<td>Tuttle, Timothy, 1781-1864</td>\n<td>b17234918</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1768864">A short account of the Hartford Convention, taken from official documents, and addressed to the fair minded and the well disposed. To which is added an attested copy of the secret journal of that body</a>\n</td>\n<td>Lyman, Theodore, 1792-1849</td>\n<td>b17688644</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2545285">A sketch of the Strict Congregational Church of Enfield, Connecticut</a>\n</td>\n\n<td>Means, Oliver William</td>\n<td>b2545285x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3077175">A souvenir of Old Home Week August 30th to Sept. 7th, 1903, Bridgeport, Connecticut. Issued by the Souvenir Committee Department of publicity</a>\n</td>\n<td>Sperry, Robert M. and Babcock, George H</td>\n<td>b30771754</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1117341">A statistical account of the county of Middlesex, in Connecticut / by David D. Field</a>\n</td>\n<td>Field, David D. (David Dudley), 1781-1867</td>\n<td>b11173415</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1157484">A walk around Walnut Hill, New Britain, Connecticut : an architectural and historical survey in photographs, drawings, maps, and text of the buildings and sites in the area surrounding Walnut Hill Park, New Britain, Connecticut, 1830-1930 / Kenneth A. Larson, in association with Ira W. Yellen</a>\n\n</td>\n<td>Larson, Kenneth A</td>\n<td>b11574847</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3083755">A year s history of the Asylum Hill Congregational Church of Hartford, Connecticut / by Lewis F. Reid. Read at the annual meeting of the church February 3, 1898</a>\n</td>\n<td>Reid, Lewis Fuller, 1853-1898</td>\n<td>b30837558</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2580619">About an old New England church : an address on "The good old days" published as a souvenir of the one hundred and fiftieth anniversary of the Congregational church of Sharon, Connecticut / by Rev. Gerald Stanley Lee</a>\n</td>\n<td>Lee, Gerald Stanley, 1862-1944</td>\n<td>b25806191</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3083767">Abstract of church records of the town of Stamford, County of Fairfield, and State of Connecticut, from the earliest records extant to 1850 by Spencer P. Mead</a>\n</td>\n<td>Mead, Spencer Percival, 1863-</td>\n<td>b30837674</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3076043">Abstract of probate records at Fairfield, county of Fairfield, and state of Connecticut, 1648-1750, by Spencer P. Mead .</a>\n</td>\n<td>Mead, Spencer Percival, 1863-, comp</td>\n\n<td>b30760434</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3077176">Abstract of probate records at Fairfield, county of Fairfield, and state of Connecticut, 1704-1757, by Spencer P. Mead .</a>\n</td>\n<td>Mead, Spencer Percival, 1863-, comp</td>\n<td>b30771766</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093169">Abstract of probate records for the district of Stamford, county of Fairfield, and state of Connecticut, 1729-1802 / by Spencer P. Mead</a>\n</td>\n<td>Mead, Spencer Percival, 1863-</td>\n<td>b30931691</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3076897">Abstract of probate records for the district of Stamford, county of Fairfield, and state of Connecticut, 1803-1848 / by Spencer P. Mead</a>\n</td>\n\n<td>Mead, Spencer Percival, 1863-</td>\n<td>b30768974</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3084210">Acts and laws of the State of Connecticut in America (1784);'Acts and Laws of the State of Connecticut in America. [State seal]'</a>\n</td>\n<td>Connecticut</td>\n<td>b30842104</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2511430">Address at the opening of the Thompson Public Library / by Ellen D. Larned, September 25, 1902</a>\n</td>\n<td>Larned, Ellen D. (Ellen Douglas), 1825-1912</td>\n<td>b2511430x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093223">Address to the Connecticut Medical Convention, at its session at Hartford, May 11th, 1853 / by Rufus Blakeman</a>\n\n</td>\n<td>Blakeman, Rufus, 1795-1870</td>\n<td>b30932233</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092238">An abridged manual of the First Congregational Church in Southington, Conn. containing the new creed and covenant together with a revised catalogue of present members issued June 30, 1888</a>\n</td>\n<td>First Congregational Church (Southington, Conn.)</td>\n<td>b30922380</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2705251">An Account of Tryon s raid on Danbury in April, 1777, also the battle of Ridgefield and the career of Gen. David Wooster / compiled by James R. Case</a>\n</td>\n<td>Case, James Royal</td>\n<td>b27052515</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1091543">An address delivered at the request of the citizens of Hartford, on the 9th of November, 1835. The close of the second century, from the first settlement of the city. By Joel Hawes</a>\n</td>\n<td>Hawes, Joel, 1789-1867</td>\n<td>b10915436</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1160750">An address delivered in St. Peter s church, Cheshire, October 1, 1844, on occasion of the fiftieth anniversary of the Episcopal academy of Connecticut. By Rev. E. E. Beardsley, M. A</a>\n</td>\n<td>Beardsley, E. Edwards (Eben Edwards), 1808-1891</td>\n\n<td>b11607506</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3083592">An address delivered to the people of Goshen, Connecticut, at their first centennial celebration, September 28, 1838 by Rev. Grant Powers .</a>\n</td>\n<td>Powers, Grant, 1784-1841</td>\n<td>b30835926</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1736083">An address, in commemoration of the sixth of September, 1781. Spoken on Groton Heights, Sept. 6, 1825. By William F. Brainard</a>\n</td>\n<td>Brainard, William F. (William Fowler), 1784-1844</td>\n<td>b17360833</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2712417">An historic mansion, being an account of the Thaddeus Burr homestead, Fairfield, Ct.,1654-1915, by Thaddeus S. Child</a>\n</td>\n\n<td>Child, Frank Samuel, 1854-1922</td>\n<td>b27124174</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1763778">An historic record and pictorial description of the town of Meriden, Connecticut and men who have made it : from earliest settlement of close of its first century of incorporation : a century of Meriden "The silver city." / Issued as the official souvenir history by authority of the general committee at the centennial celebration, June 10 to 16, 1906 comp. by C. Bancroft Gillespie early history by George Munson Curtis</a>\n</td>\n<td>Gillespie, Charles Bancroft</td>\n<td>b17637788</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2950556">An historical address delivered at the celebration of the two hundredth anniversary of the First Church of Christ, in Colchester, Connecticut, August 27th, 1903 / by Edward M. Day</a>\n</td>\n<td>Day, Edward M</td>\n<td>b29505562</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2584864">An historical address delivered at the opening of the Village Library of Farmington, Conn., September 30th, 1890 / by Julius Gay</a>\n\n</td>\n<td>Gay, Julius, 1834-1918</td>\n<td>b25848641</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3078165">An historical address given on the occasion of the centennial anniversary of the First Congregational Church, Norwich, Conn., at Norwich Town Green, Sunday, June 16th, 1901 / by Charles Addison Northrop</a>\n</td>\n<td>Northrop, Charles Addison, 1850-1931</td>\n<td>b30781656</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2992786">An historical discourse delivered at the celebration of the one hundredth anniversary of the erection of the Congregational Church in Farmington, Conn., October 16, 1872 / by Noah Porter</a>\n</td>\n<td>Porter, Noah, 1811-1892</td>\n<td>b29927869</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3087854">An historical discourse delivered in Christ Church, Stratford, Conn. : on the fifth Sunday in Lent, March 28th, 1855 / by John A. Paddock</a>\n</td>\n<td>Paddock, John Adams</td>\n<td>b30878548</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2570904">An historical discourse in commemoration of the two-hundredth anniversary of the settlement of Norwalk, Ct., in 1651 : delivered in the First Congregational Church in Norwalk, July 9, 1851 / by Nathaniel Bouton</a>\n</td>\n<td>Bouton, Nathaniel, 1799-1878</td>\n\n<td>b25709045</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2590819">An historical discourse, on the two hundredth anniversary of the founding of the Hopkins Grammar School, New Haven, Connecticut : delivered before the "Hopkins Grammar School Association", July 24th, 1860 / by Leonard Woolsey Bacon with notes and an appendix</a>\n</td>\n<td>Bacon, Leonard Woolsey, 1830-1907</td>\n<td>b25908194</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2973378">An historical sermon of the First Church, East Hampton, Conn. / preached by Rev. Joel S. Ives ... July 9th, 1876 .</a>\n</td>\n<td>Ives, Joel Stone, 1847-1924</td>\n<td>b29733789</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092249">An historical sermon of the First Congregational Church, Portland, Conn. : preached by Rev. John S. Bayne, July 9th, 1876</a>\n</td>\n\n<td>Bayne, John S</td>\n<td>b30922495</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2577882">An historical sketch of Salisbury, Connecticut / by Malcolm Day Rudd. And an explanatory note on Indian names / by Irvin W. Sanford</a>\n</td>\n<td>Rudd, Malcolm Day, b. 1877</td>\n<td>b25778821</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1134250">An old New England town : sketches of life, scenery, character / by Frank Samuel Child</a>\n</td>\n<td>Child, Frank Samuel, 1854-1922</td>\n<td>b1134250x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2399762">Ancient town records : New Haven town records 1649-1769 Franklin Bowditch Dexter</a>\n\n</td>\n<td>Dexter, Franklin Bowditch, 1842-1920</td>\n<td>b2399762x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2590906">Ancient waymarks : a profession of faith / by John Davenport, at the institution of the First Church in New Haven and the New Haven catechism, originally prepared for that church, by John Davenport, pastor, and William Hooke, teacher with a preface, by Leonard Bacon</a>\n</td>\n<td>Davenport, John, 1597-1670</td>\n<td>b2590906x</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1117336">Annals of an old parish : historical sketches of Trinity Church, Southport, Connecticut, 1725 to 1848 / by Edmund Guilbert</a>\n</td>\n<td>Guilbert, Edmund</td>\n<td>b11173361</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1006263">Annals of St. James s Church, New London : for one hundred and fifty years / by Robert A. Hallam</a>\n</td>\n<td>Hallam, Robert A. (Robert Alexander), 1807-1877</td>\n<td>b10062634</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2711498">Annals of the Congregational Church, Seymour, Conn. : annuals, historical sermons, etc</a>\n</td>\n<td>\n</td>\n\n<td>b27114983</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3091860">Annals of the Methodist Episcopal church, of Seymour, Conn., by W.C. Sharpe ..</a>\n</td>\n<td>Sharpe, W. C. (William Carvosso), 1839-1924</td>\n<td>b30918601</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2876766">Annual report and manual of the East Congregational Church, New Haven, Conn</a>\n</td>\n<td>East Congregational Church (New Haven, Conn.)</td>\n<td>b28767664</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092617">Annual report of the activities of the First Church of Christ, New London, Conn. for the year1890</a>\n</td>\n\n<td>First Church of Christ (New London, Conn.)</td>\n<td>b30926178</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3078173">Articles of faith (with scripture proofs,) and church covenant, adopted by the Fifth Congregational Society in Norwich, June 1, 1842</a>\n</td>\n<td>Broadway Congregational Church (Norwich, Conn.)</td>\n<td>b30781735</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2977053">Articles of faith and covenant of the Congregational Church in Ellington, Conn., together with its history, by-laws and regulations, and a catalogue of its members since the year 1799</a>\n</td>\n<td>Congregational Church (Ellington, Conn.)</td>\n<td>b29770531</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093638">Articles of faith and covenant of the Congregational Church, Ellsworth, Conn., with a catalogue of its officers and members</a>\n\n</td>\n<td>Congregational Church (Ellsworth, Conn.)</td>\n<td>b3093638x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093252">Articles of faith and covenant of the Westfield Church, West Killingly, Ct. : with a list of members, March 1, 1862</a>\n</td>\n<td>Westfield Congregational Church (West Killingly, Conn.)</td>\n<td>b3093252x</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2730667">Articles of faith and covenant united, abridged, and adopted by the Church in Rocky Hill : with a catalogue of its members, March 1843, with resolutions disciplinary, and historical dates of the Ecclesiastical Society</a>\n</td>\n<td>Rocky Hill Congregational Church (Rocky Hill, Conn.)</td>\n<td>b27306677</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b2423205">Articles of faith, and covenant adopted by the Congregational Church in Ellington, Conn. : together with a concise history of the Church, and a catalogue of its members since the year 1799</a>\n</td>\n<td>Congregational Church (Ellington, Conn.)</td>\n<td>b24232051</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2933766">Articles of faith, covenant, and standing rules of the Congregational Church in Bristol, Conn. ... with a catalogue of the members, March 1, 1833</a>\n</td>\n<td>First Congregational Church (Bristol, Conn.)</td>\n\n<td>b29337665</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1716688">Articles of faith, with Scripture proofs, covenant, and historical sketch of the Congretational [sic] Church in Lebanon, Goshen, Connecticut with a catlogue [sic] of its members, [1730 to] Jan. 1, 1847</a>\n</td>\n<td>Goshen Congregational Church (Lebanon, Conn.)</td>\n<td>b17166883</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2715319">Bantam almanac, fact and folklore</a>\n</td>\n<td>\n</td>\n<td>b27153198</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092844">Baptisms, marriages and deaths from the first book of church records of the Second Ecclesiastical Society of Saybrook, Conn.</a>\n</td>\n\n<td>Eardeley, James W</td>\n<td>b30928448</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1691928">Barkhamsted, Conn., and its centennial, 1879 : to which is added a historical appendix, containing copies of old letters, antiquarian, names of soldiers of the revolution, 1812, 1846, and 1861, civil officers, and other matter interesting to the people of the town</a>\n</td>\n<td>Lee, W. W. (William Wallace), 1828-</td>\n<td>b16919282</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1146655">Bethlem 1812 & Watertown 1801 / the Acorn Club of Connecticut</a>\n</td>\n<td>\n</td>\n<td>b11466558</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b2311706">Bewitched Mine Hill: the silver-lead-iron mine of Roxbury, Connecticut, by Daniel R. Hull. Published in cooperation with the Old Woodbury Historical Society</a>\n</td>\n<td>Hull, Daniel R</td>\n<td>b23117060</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093673">Bi-centennial of the organization of the First Church of Christ in Durham, Connecticut, Feb 11, 1911</a>\n</td>\n<td>\n</td>\n\n<td>b30936731</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3079277">Bicentennial sermon : preached before the First Congregational Church, August 24, 1904 by the Pastor Rev. Henry Tucker Arnold, together with the proceedings at the anniversary. / by Rev. Henry T. Arnold</a>\n</td>\n<td>Arnold, Henry T</td>\n<td>b30792770</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2482106">Biennial report of the Examiner of Public Records</a>\n</td>\n<td>Connecticut. Examiner of Public Records</td>\n<td>b24821068</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1736357">Biographical sketches of Ellington families / by Darius Crane</a>\n</td>\n\n<td>Crane, Darius</td>\n<td>b17363573</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1761305">Births, baptisms, marriages, and deaths : from the records of the town and churches in Mansfield, Connecticut, 1703-1850 / copied from the records by Susan W. Dimock</a>\n</td>\n<td>Dimock, Susan Whitney</td>\n<td>b1761305x</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1253277">Births, marriages, and deaths returned from Hartford, Windsor, and Fairfield, and entered in the early land records of the colony of Connecticut : volumes I and II of land records and no. D of colonial deeds / transcribed and edited by Edwin Stanley Welles</a>\n</td>\n<td>Welles, Edwin Stanley</td>\n<td>b12532770</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1761304">Births, marriages, baptisms and deaths, from the records of the town and churches in Coventry, Connecticut, 1711-1844 copies from the records by Susan Whitney Dimock. Printed for private distribution</a>\n\n</td>\n<td>Dimock, Susan Whitney</td>\n<td>b17613048</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093263">Book of records containing an account of the rise and progress of the First Baptist Church in East Haddam, Conn. / copied from the original manuscript and indexed by Edna Huntington</a>\n</td>\n<td>Huntington, Edna</td>\n<td>b30932634</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3084883">Book of words : the pageant of Darien : the pageant of a residential community / William Chauncy Langdon</a>\n</td>\n<td>Langdon, William Chauncy, 1871-1947</td>\n<td>b30848830</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b2447085">Bridgeport and vicinity in the Revolution and the War of 1812 : a centennial history written at the request of the city council / by William B. Hincks</a>\n</td>\n<td>Hincks, William B</td>\n<td>b24470855</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2497373">Bristol, Connecticut : "in the olden time New Cambridge", which includes Forestville</a>\n</td>\n<td>\n</td>\n\n<td>b24973737</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2533895">Burlington, Connecticut : historical address / delivered by Epaphroditus Peck at the centennial celebration on June 16, 1906</a>\n</td>\n<td>Peck, Epaphroditus, 1860-1938</td>\n<td>b2533895x</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1778950">Burt s illustrated guide of the Connecticut valley, containing descriptions of mount Holyoke, mount Mansfield, White mountains, lake Memphremagog, lake Willoughby, Montreal, Quebec, &c. By Henry M. Burt</a>\n</td>\n<td>Burt, Henry M. (Henry Martyn), 1831-1899</td>\n<td>b17789503</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1243567">By gone days in Ponsett-Haddam, Middlesex County, Connecticut : a story / by William C. Knowles</a>\n\n</td>\n<td>Knowles, William C. (William Clark), 1840-</td>\n<td>b12435673</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1280414">Canaan parish, 1733-1933 : being the story of the Congregational church of New Cannan, Connecticut, as told by the observance of its two hundredth anniversary, June 20 to December 20, 1933. Also the history and addresses of the Methodist Episcopal and St. Mark s churches given upon the occasion of their 100th and 150th anniversaries, respectively</a>\n</td>\n<td>Congregational Church (New Canaan, Conn.)</td>\n<td>b12804149</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2427004">Catalogue and brief history of the 3d Congregational Church in East Windsor, Conn. : together with the articles of faith and covenant ... January 1st, 1842</a>\n</td>\n<td>Third Congregational Church (East Windsor, Conn.)</td>\n<td>b24270040</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3084150">Catalogue of Broadway Congregational Church Norwich, Conn., 1871-1872</a>\n</td>\n<td>Broadway Congregational Church (Norwich, Conn.)</td>\n<td>b30841501</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1794159">Catalogue of Connecticut volunteer organizations, (infantry, cavalry, and artillery,) in the service of the United States, 1861-1865 : with additional enlistments, casualties, &c., &c., and brief summaries, showing the operations and service of the several regiments and batteries / Prepared from records in the Adjutant-General s Office</a>\n</td>\n\n<td>Connecticut. Adjutant-General s Office</td>\n<td>b17941593</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1741754">Catalogue of the 1st, 2d, 3d, 4th, and 5th Regiments, Connecticut Volunteers, 1861</a>\n</td>\n<td>Connecticut. Adjutant-General s Office</td>\n<td>b17417545</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2950084">Catalogue of the Congregational Church in Clinton, Conn., from its organization, in the year 1667 : to which is prefixed the Articles of faith and covenant, and also, a sketch of the history of the church, &c</a>\n</td>\n<td>Congregational Church (Clinton, Conn.)</td>\n<td>b29500849</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2980570">Catalogue of the First Church of Christ in Glastenbury [sic] : together with a brief outline of its history, and its articles of faith and covenant</a>\n\n</td>\n<td>First Church of Christ in Glastonbury (Glastonbury, Conn.)</td>\n<td>b29805703</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3083573">Catalogue of the First Church of Christ, in Colchester, Conn., A.D. 1870</a>\n</td>\n<td>First Church of Christ (Colchester, Conn.)</td>\n<td>b30835732</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3076176">Catalogue of the members of the church in the Second Ecclesiastical Society in Cornwall, Conn., from its original formation in 1782 to May 1, 1858, together with a sketch of the history of the church, the covenant and standing rules</a>\n</td>\n<td>Cornwall (Conn.). Second Church of Christ</td>\n<td>b30761761</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b2569250">Catalogue of the members of the church in the United Society in New Haven : formed by the union of the White-Haven and Fair-Haven churches: from the formation of the parent church. May 7, 1742, to July 1, 1855. Together with the profession of faith, covenant and standing rules</a>\n</td>\n<td>Church of Christ (New Haven, Conn.)</td>\n<td>b25692501</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2732841">Catalogue of the North Church, Hartford : together with its history, articles of faith and by-laws</a>\n</td>\n<td>North Congregational Church (Hartford, Conn.)</td>\n\n<td>b27328417</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2727526">Catalogue of the North Church, Hartford. : together with its history, articles of faith, and by-laws</a>\n</td>\n<td>North Congregational Church (Hartford, Conn.)</td>\n<td>b27275267</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2568394">Catalogue of the persons admitted to the First Church in New Haven, during the ministry of the Rev. James Pierpont, and the Rev. James Noyes, from 1685 to 1757 : also, A profession of faith and catechism, by the Rev. John Davenport</a>\n</td>\n<td>First Church in New Haven (New Haven, Conn.)</td>\n<td>b25683949</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3085140">Catalogue of the surviving members of the First Congregational Church in Coventry, Conn. January 24, 1839 : together with some historical notices, &c. prefixed</a>\n\n</td>\n<td>First Congregational Church (Coventry, Conn.)</td>\n<td>b30851403</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2643999">Catalogue of the Theological Institute of Connecticut : at East-Windsor, February, 1841</a>\n</td>\n<td>Theological Institute of Connecticut</td>\n<td>b26439992</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2950522">Celebration at Collinsville by the inhabitants of the town of Canton, Conn., of the one hundredth anniversary of the independence of the United States of America : July 4, 1876</a>\n</td>\n<td>Canton (Conn.)</td>\n<td>b29505227</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3077208">Celebration in Green s Farms : the historical discourse delivered at the celebration of the one hundred and fiftieth anniversary of the formation of the church in Green s Farms, held Oct. 26, 1865 / by B.J. Relyea with an appendix</a>\n</td>\n<td>Relyea, B. J. (Benjamin J.), 1819-1901</td>\n<td>b30772084</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1242827">Celebration of the bi-centennial anniversary of the town of Suffield, Conn. : Wednesday, Oct. 12, 1870</a>\n</td>\n<td>\n</td>\n\n<td>b12428279</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2973363">Celebration of the Centennial anniversary of the parish of Christ Church : Middle Haddam, Conn., June 17, 1885</a>\n</td>\n<td>Christ Church (Middle Haddam, Conn.)</td>\n<td>b29733637</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2934909">Celebration of the fiftieth anniversary of the organization of the Congregational Church, Collinsville, Conn., Sunday, June 25, 1882</a>\n</td>\n<td>Congregational Church (Collinsville, Conn.)</td>\n<td>b29349096</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2541976">Celebration of the one hundredth anniversary of the incorporation of the town of Canton, Connecticut, July 15, 16, 17, and 18, 1906</a>\n</td>\n\n<td>Canton (Conn.)</td>\n<td>b25419766</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1782430">Celebration of the two hundred and fiftieth anniversary of the settlement of Suffield, Connecticut, October 12, 13 and 14, 1920, with sketches from its past and some record of its last half century and of its present</a>\n</td>\n<td>Suffield (Conn.)</td>\n<td>b17824308</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1112312">Centennial address / by David D. Field with historical sketches of Cromwell, Portland, Chatham, Middle-Haddam, Middletown, and its parishes</a>\n</td>\n<td>Field, David D. (David Dudley), 1781-1867</td>\n<td>b11123126</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2559748">Centennial celebration : historical address by Roger Welles, Esq. and poem by Miss Mary K. Atwood, delivered in the Congregational Church, Newington, Conn., July 4, 1876</a>\n\n</td>\n<td>Welles, Roger, 1829-1904</td>\n<td>b25597486</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1242825">Centennial celebration of the incorporation of the town of Bristol [Conn.] June 17, 1885 / Comp. by John J. Jennings</a>\n</td>\n<td>Jennings, John J. (John Joseph), 1853-1909</td>\n<td>b12428255</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2551678">Centennial memorial of the First Baptist Church of Hartford, Connecticut, March 23d and 24th, 1890</a>\n</td>\n<td>First Baptist Church (Hartford, Conn.)</td>\n<td>b25516784</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b2571542">Centennial of Meriden, June 10-16, 1906 : report of the proceedings, with a full description of the many events of its successful celebration. Old home week. Meriden, Conn., the "Silver City" Pub. under the auspices of the general centennial committee</a>\n</td>\n<td>Meriden (Conn.)</td>\n<td>b25715422</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2276762">Centennial papers, published by order of the General conference of the Congregational churches of Connecticut</a>\n</td>\n<td>General Conference of the Congregational Churches of Connecticut</td>\n\n<td>b22767629</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2711574">Centennial sermons on the history of the Center Congregational Church, of Meriden, Conn. : preached in that church Sundays, October 1st and 22d, 1876 / by Edward Hungerford .</a>\n</td>\n<td>Hungerford, Edward, 1829-1911</td>\n<td>b27115744</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3077178">Centennial services of the Stamford Baptist Church : including the historical discourse by Rev. Edward Lathrop ... November 6, 1873 .</a>\n</td>\n<td>Baptist Church (Stamford, Conn.)</td>\n<td>b3077178x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3045819">Charles Storrs deeds, dated August 25th, 1862, and April 5, 1864, to the Mansfield Burying-Ground Association</a>\n</td>\n\n<td>Storrs, Charles, 1822-1884</td>\n<td>b30458195</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2303874">Charter and by-laws of the city of New Haven : November 1848</a>\n</td>\n<td>New Haven (Conn.)</td>\n<td>b23038743</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3094036">Christ Church Parish, Tashua. the fiftieth anniversary of the laying of the corner stone, 1846--1896. This book gives a complete history from the founding of the parish to the present time. a souvenir of the anniversary edited and compiled by Rev. R. Bancroft Whipple, B.D., Rector</a>\n</td>\n<td>Whipple, R. Bancroft</td>\n<td>b30940369</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2317392">Chronicles of a pioneer school from 1792 to 1833, being the history of Miss Sarah Pierce and her Litchfield school, comp. by Emily Noyes Vanderpoel. Ed. by Elizabeth C. Barney Buel</a>\n\n</td>\n<td>Vanderpoel, Emily Noyes, 1842-1939</td>\n<td>b23173920</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2700579">Church manual of the Fourth Congregational Church, Hartford, Ct. : with a catalogue of the members</a>\n</td>\n<td>Fourth Congregational Church (Hartford, Conn.)</td>\n<td>b27005793</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2584867">Church music in Farmington in the olden time : an historical address delivered at the annual meeting of the Village Library Company of Farmington, Conn., May 6, 1891 / by Julius Gay</a>\n</td>\n<td>Gay, Julius, 1834-1918</td>\n<td>b25848677</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3083578">Church of Christ, Newington, Conn. celebration of the one hundredth anniversary of the church building and the 175th anniversary of the organization of the church, on October 2 and 3, 1897</a>\n</td>\n<td>\n</td>\n<td>b30835781</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3094038">Circuit preachers\nand pastors First Methodist Episcopal Church, Bridgeport, Connecticut</a>\n</td>\n<td>First Methodist Episcopal Church (Bridgeport, Conn.)</td>\n\n<td>b30940382</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093624">Clinton Connecticut September 10, 1925 1812-1815</a>\n</td>\n<td>Cramer, Effie Stevens</td>\n<td>b3093624x</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2584902">Colonial history of the parish of Mount Carmel : as read in its geologic formations, records and traditions / by John H. Dickerman</a>\n</td>\n<td>Dickerman, John H. (John Herbert), b. 1836</td>\n<td>b25849025</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3073295">Commemorative discourse, delivered on the occasion of meeting for the last time in the old house of worship of the Second Congregational Church in Greenwich, Dec. 5, 1858</a>\n</td>\n\n<td>Linsley, Joel Hervey</td>\n<td>b30732955</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2574936">Commemorative exercises of the Church of Christ at Norfolk : November 20, 27, 28 and December 4, 11, 25, 1910, celebrating the one hundred and fiftieth anniversary of the organization of the church. Organized December 24, 1760</a>\n</td>\n<td>Church of Christ (Norfolk, Conn.)</td>\n<td>b25749365</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2553194">Commemorative exercises of the First church of Christ : in Hartford, at its two hundred and fiftieth anniversary, October 11 and 12, 1883</a>\n</td>\n<td>First Church of Christ (Hartford, Conn.)</td>\n<td>b25531943</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2714820">Compounce, 1846-1902 / by Alice J. Norton</a>\n\n</td>\n<td>Norton, Alice J</td>\n<td>b27148208</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2570922">Confession of faith and covenant / of the Second Congregational Church, in Norwich, Ct. with a catalogue of its officers and members, from its organization, in 1760</a>\n</td>\n<td>Second Congregational Church (Norwich, Conn.)</td>\n<td>b25709227</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2423601">Confession of faith and covenant of the Congregational Church in Farmington, Conn. : with a catalogue of members, from October 13, 1652 to 1900</a>\n</td>\n<td>First Church of Christ Congregational (Farmington, Conn.)</td>\n<td>b24236019</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b2423258">Confession of faith and covenant of the Congregational Church in Farmington, Conn. : with a catalogue of the members, from Oct. 13, 1852 to Jan. 1, 1864</a>\n</td>\n<td>First Church of Christ Congregational (Farmington, Conn.)</td>\n<td>b24232580</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2974833">Confession of faith and covenant of the First Congregational Church in East Windsor, Conn., 1850</a>\n</td>\n<td>First Congregational Church (East Windsor, Conn.)</td>\n\n<td>b29748331</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3078673">Confession of faith and form of covenant of the First Congregational church in North Woodstock : With an appendix / Published by vote of the church</a>\n</td>\n<td>North Woodstock (Mass.). First Congregational Church</td>\n<td>b30786733</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2974836">Confession of faith, and covenant, with a historical sketch, and catalogue of members, of the First Congregational Church, East Windsor, Conn</a>\n</td>\n<td>First Congregational Church (East Windsor, Conn.)</td>\n<td>b29748367</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093713">Confession of faith, covenant, and articles of practice of the Congregational Church at Mount Carmel, Hamden, to which are added a list of its officers from the formation, and a catalogue of the members belonging to it Oct. 20th, 1855</a>\n</td>\n\n<td>\n</td>\n<td>b30937139</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1096306">Connecticut a guide to its roads, lore, and people, written by workers of the Federal writers project of the Works progress administration for the state of Connecticut sponsored by Wilbur L. Cross</a>\n</td>\n<td>Federal Writer s Project for the State of Connecticut</td>\n<td>b10963066</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1223708">Connecticut a study of a commonwealth-democracy</a>\n</td>\n<td>Johnston, Alexander, 1849-1889</td>\n<td>b12237085</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1593925">Connecticut beautiful, by Wallace Nutting ... Illustrated by the author with three hundred and four pictures covering all the counties in Connecticut</a>\n\n</td>\n<td>Nutting, Wallace, 1861-1941</td>\n<td>b1593925x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2414643">Connecticut historical collections ... by John Warner Barber</a>\n</td>\n<td>Durrie, John, 1792-1857</td>\n<td>b24146432</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1710050">Connecticut historical collections, containing a general collection of interesting facts, traditions, biographical sketches, anecdotes, etc., relating to the history and antiquities of every town in Connecticut, with geographical descriptions. Illustrated by 200 engravings</a>\n</td>\n<td>Barber, John Warner, 1798-1885</td>\n<td>b17100501</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1749473">Connecticut houses : a list of manuscript histories of early Connecticut homes, presented to the Connecticut State Library by the Connecticut Society, Colonial Dames of America / compiled by Mrs. Elford Parry Trowbridge</a>\n</td>\n<td>\n</td>\n<td>b17494734</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093168">Connecticut ideals : a brief statement of the government of Connecticut and the contributions of the state to the United States Constitutiondelivered before a meeting held in commemoration of the Tercentenary of Connecticut in the child Memorial Hall in Fairfield thirteenth June, 1935</a>\n</td>\n<td>Swayne, Noah Haynes, 1804-1884</td>\n\n<td>b3093168x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1231141">Connecticut in the Continental Congress / by Christopher Collier</a>\n</td>\n<td>Collier, Christopher, 1930-</td>\n<td>b12311418</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1593779">Connecticut in transition, 1775-1818 / by Richard J. Purcell</a>\n</td>\n<td>Purcell, Richard J. (Richard Joseph), 1887-1950</td>\n<td>b15937793</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1145205">Connecticut river / by Marguerite Allis illustrated with photographs by the author</a>\n</td>\n\n<td>Allis, Marguerite, 1887-1958</td>\n<td>b11452055</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1771452">Connecticut s activities in the wars of this country: a summary. Compiled by Irene H. Mix, Connecticut state library</a>\n</td>\n<td>Mix, Irene H. (Irene Howe), b. 1887, comp</td>\n<td>b17714527</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1230675">Connecticut s Revolutionary War leaders / by North Callahan</a>\n</td>\n<td>Callahan, North</td>\n<td>b12306757</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1230674">Connecticut, the Provisions State / by Chester M. Destler</a>\n\n</td>\n<td>Destler, Chester McArthur, 1904-1984</td>\n<td>b12306745</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3073299">Consecration of the fourth church edifice, Trinity Parish, Newtown, Conn., and celebration of the one hundred and fiftieth anniversary of its foundation, with memorial sermon / by Rev. D.P. Sandford, D.D</a>\n</td>\n<td>\n</td>\n<td>b30732992</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1145085">Contributions to the ecclesiastical history of Connecticut prepared under the direction of the General association, to commemorate the completion of one hundred and fifty years since its first annual assembly</a>\n</td>\n<td>General Association of Connecticut</td>\n<td>b1145085x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1063487">Contributions to the history of Christ Church, Hartford</a>\n</td>\n<td>\n</td>\n<td>b10634873</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2422058">Covenant and membership of the Baptist Church in Preston City, Conn. / compiled by Charles B. Ayer</a>\n</td>\n<td>Ayer, Charles B</td>\n\n<td>b24220589</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3072826">Danbury Directory</a>\n</td>\n<td>\n</td>\n<td>b30728265</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1706193">Danbury, Fairfield County</a>\n</td>\n<td>Ancestry, George</td>\n<td>b17061933</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3083761">Davenport Ridge, Stamford, Connecticut : Historical sketch</a>\n</td>\n\n<td>Davenport, A. B. (Amzi Benedict), b. 1817</td>\n<td>b30837613</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092244">Decennial Hand-Book of the Union Congregational Church of Christ, Rockville, Conn. for the years 1888-1899</a>\n</td>\n<td>Union Congregational Church of Christ (Rockville, Conn.)</td>\n<td>b30922446</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093680">Dedication services Dec. 28 1899 of the Goshen Cong. Church, Goshen, Conn. from Norwich Bulletin</a>\n</td>\n<td>\n</td>\n<td>b30936809</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1331082">Democracy in the Connecticut frontier town of Kent</a>\n\n</td>\n<td>Grant, Charles S., 1917-</td>\n<td>b13310823</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2589179">Digest of the history of the Second Company, Governor s Foot Guard of Connecticut, 1774-1898 / compiled from records of the company, and from state records and statistics by Jason P. Thompson</a>\n</td>\n<td>\n</td>\n<td>b25891790</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1698846">Diocese of Connecticut : formative period, 1784-1791 / edited for the Commission on Parochial Archives by Joseph Hooper</a>\n</td>\n<td>Hooper, Joseph, 1851-1928</td>\n<td>b16988462</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1016282">Directory for the city of Hartford for the year 1799, containing the names of the business men and other residents, their occupation and location, when known, to the number of nearly eight hundred. Comp. by Frank D. Andrews .</a>\n</td>\n<td>Andrews, Frank D</td>\n<td>b10162823</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3081517">Directory of the Broadway Congregational Church and Congregation, Norwich, Conn. : May, 1879</a>\n</td>\n<td>Broadway Congregational Church (Norwich, Conn.)</td>\n\n<td>b30815174</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093733">Discourse delivered on the two hundredth anniversary of the organization of the Old Lyme Congregational Church, 1693-1893</a>\n</td>\n<td>Shirley, Arthur, 1853-1925</td>\n<td>b30937334</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3088675">Discourse on the fiftieth anniversary of his ordination as pastor of the church in Simsbury, Conn./ by Allen M Lean</a>\n</td>\n<td>M Lean, Allen</td>\n<td>b30886752</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2718997">Discourses prepared for the celebration of the fiftieth anniversary of the appointment of Deacon Charles G. Ives, to the office of a Deacon, in the Congregational Church in Bristol, Conn., February 2d, 1859</a>\n</td>\n\n<td>\n</td>\n<td>b27189971</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1120813">Documentary history of Suffield : in the colony and province of the Massachusetts Bay, in New England, 1660-1749 / collected, transcribed, and published by Hezekiah Spencer Sheldon</a>\n</td>\n<td>Sheldon, Hezekiah Spencer, b. 1820</td>\n<td>b11208132</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2721226">Documentary history of Suffield and the Lexington alarm, April, 1775 / by Hezekiah S. Sheldon</a>\n</td>\n<td>Sheldon, Hezekiah Spencer, b. 1820</td>\n<td>b27212269</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3028940">Earliest Guilford / by Charles Lewis Biggs, rector, Christ Episcopal Church, Guilford</a>\n\n</td>\n<td>Biggs, Charles Lewis</td>\n<td>b30289403</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2073594">Early annals of Newington : comprising the first records of the Newington Ecclesiastical Society, and of the Congregational Church connected therewith : with documents and papers relating to the early history of the parish / transcribed and edited by Roger Welles</a>\n</td>\n<td>Welles, Roger, 1829-1904</td>\n<td>b20735947</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1795513">Early Connecticut artists & craftsmen, by Frederic Fairchild Sherman</a>\n</td>\n<td>Sherman, Frederic Fairchild, 1874-1940</td>\n<td>b17955130</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1646831">Early days in Newington, Connecticut : 1833-1836 / by Henry G. Little, 1813-1900</a>\n</td>\n<td>Little, Henry Gilman, 1813-1900</td>\n<td>b16468314</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1120140">Early Lebanon. An historical address delivered in Lebanon, Conn., by request, on the national centennial, July 4, 1876. By Rev. Orlo D. Hine. With an appendix of historical notes, by Nathaniel H. Morgan</a>\n</td>\n\n<td>Hine, Orlo Daniel, 1815-1890</td>\n<td>b1120140x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1736457">Early medicine, and early medical men in Connecticut / Gurdon W. Russell</a>\n</td>\n<td>Russell, Gurdon Wadsworth, 1815-1909</td>\n<td>b17364577</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2716693">Early recollections of Fairfield life by William Burr</a>\n</td>\n<td>Burr, William, 1831-</td>\n<td>b27166934</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2545261">Early records of baptisms, marriages, deaths, and membership of the Congregational church : East Hampton (Chatham) Connecticut</a>\n\n</td>\n<td>First Church, in Chatham (East Hampton, Conn.)</td>\n<td>b25452617</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1774380">East Windsor in 1806 / by David McClure</a>\n</td>\n<td>M Clure, David, 1748-1820</td>\n<td>b17743801</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2579881">Ecclesiastical and other sketches of Southington, Conn. / by Rev. Heman R. Timlow</a>\n</td>\n<td>Timlow, Heman R</td>\n<td>b25798819</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1242214">Encyclopedia of Connecticut biography, genealogical-memorial representative citizens compiled with assistance of the following advisory committee: Samuel Hart ... Thomas Snell Weaver, Joseph Anderson ... Walter Ralph Steiner ... Hadlai Austin Hull ... Storrs Ozias Seymour ... John Gaylord Davenport ... George Curtis Waldo ... Frederick Bostwick, Guilford Smith, Lewis Eliot Stanton .</a>\n</td>\n<td>\n</td>\n<td>b12422149</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2876724">Entering into the labors of others : Dwight Place Church Semi-Centennial discourse / preached by J. E. Twitchell</a>\n</td>\n<td>Twitchell, J. E</td>\n\n<td>b2876724x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092826">Essentials of the Gospel : a sermon preached at the dedication of the Church in Howe Street, New Haven, January 26, 1842 / by Abraham C. Baldwin</a>\n</td>\n<td>Baldwin, A. C. (Abraham Chittenden), 1804-1887</td>\n<td>b30928266</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1002052">Evening post annual, Biographical sketches [with portraits] of the state officers, representatives in Congress, governor s staff, and senators and members of the General assembly of the state of Connecticut</a>\n</td>\n<td>\n</td>\n<td>b10020524</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1720155">Excursion of the Putnam phalanx to Mount Vernon, December, 1860</a>\n</td>\n\n<td>\n</td>\n<td>b1720155x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2997753">Exercises at the celebration of the 150th anniversary of the Second Congregational Church of Greenwich, Conn., Wednesday, November 7, 1866 : including an historical discourse / by Rev. J.H. Linsley and historical sketches and addresses from others</a>\n</td>\n<td>\n</td>\n<td>b29977538</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1746779">Exercises at the opening of the James Blackstone Memorial Library, Branford, Conn. June 17, 1896</a>\n</td>\n<td>James Blackstone Memorial Library (Branford, Conn.)</td>\n<td>b17467792</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2703238">Exercises attending the one hundred and seventy-fifth anniversary of the organization of the Congregational Church in North Branford, Connecticut, Wednesday, October 15, 1902 : historical sermon, addresses and letters, 1726(!)-1902</a>\n\n</td>\n<td>North Branford Congregational Church (North Branford, Conn.)</td>\n<td>b27032383</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2721222">Exercises of dedication and installation at the First Congregational Church, Suffield, Conn., Wednesday, December 8, 1869</a>\n</td>\n<td>First Congregational Church (Suffield, Conn.)</td>\n<td>b27212221</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1137190">Extracts from the records of Colchester : with some transcripts from the recording of Michaell Taintor of "Brainford," Conn. / transcribed by Charles M. Taintor</a>\n</td>\n<td>Colchester (Conn.)</td>\n<td>b11371900</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b2589558">Fair Haven : centennial discourse delivered in the Second Congregational Church, Fair Haven, Connecticut, Sunday, July 9th, 1876 / Horace C. Hovey</a>\n</td>\n<td>Hovey, Horace Carter, 1833-1914</td>\n<td>b25895588</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3077163">Fairfield, Connecticut, Probate records. Abstracted by William A. Eardeley, M.A. during the years 1898, 1899, and 1900 from the original records in the Town Hall in Fairfield, Connecticut</a>\n</td>\n<td>Eardeley, William Applebie, 1870-1935</td>\n\n<td>b30771638</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3078171">Fairfield, Fairfield Co., Conn. : inscriptions from graveyards with notes and index / Francis F. Spies</a>\n</td>\n<td>Spies, Francis F. (Francis Ferdinand), 1871-1934</td>\n<td>b30781711</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1758074">Families of early Hartford, Connecticut / Lucius Barnes Barbour</a>\n</td>\n<td>Barbour, Lucius Barnes, 1878-1934</td>\n<td>b17580742</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1747332">Families of early Milford, Connecticut / compiled by Susan Woodruff Abbott edited and prepared for publication by Jacquelyn L. Ricker</a>\n</td>\n\n<td>Abbott, Susan Emma Woodruff, 1901-</td>\n<td>b17473329</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1780183">Family records (heretofore unpublished) collected in commemoration of the three hundredth anniversary of the settlement of Connecticut</a>\n</td>\n<td>National Society of Daughters of Founders and Patriots of America. Connecticut Chapter</td>\n<td>b17801837</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2567466">Farm echoes / by F. Ratchford Starr, M.A., Echo farm, Litchfield, Connecticut</a>\n</td>\n<td>Starr, F. Ratchford (Frederick Ratchford), 1821-1889</td>\n<td>b25674663</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2584822">Farmington in the War of the Revolution : an historical address, delivered at the annual meeting of the Village Library Company of Farmington, Conn., May 3, 1893 / by Julius Gay</a>\n\n</td>\n<td>Gay, Julius, 1834-1918</td>\n<td>b25848227</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2584871">Farmington soldiers in the colonial wars : an historical address, delivered at the annual meeting of the Village Library Company of Farmington, Conn., September 8, 1897 / by Juluis Gay</a>\n</td>\n<td>Gay, Julius, 1834-1918</td>\n<td>b25848719</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2584880">Farmington two hundred years ago : an historical address delivered at the annual meeting of the Village Library Company of Farmington, Connecticut, September 14, 1904 / by Julius Gay</a>\n</td>\n<td>Gay, Julius, 1834-1918</td>\n<td>b2584880x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1698661">Farmington, one of the mother towns of Connecticut / [Quincy Blakely]</a>\n</td>\n<td>Blakely, Quincy, b. 1872</td>\n<td>b16986611</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2721343">Fiftieth anniversary of the Broadway Congregational Church, Norwich, Conn., June 1, 1892</a>\n</td>\n<td>Broadway Congregational Church (Norwich, Conn.)</td>\n\n<td>b27213432</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093599">Fiifteen years of the Second Congregational Church, Norwich, Conn by the pastor Rev. Wm. S. Palmer, D.D.</a>\n</td>\n<td>Palmer, William Stratton, 1827-</td>\n<td>b30935994</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2574944">First Baptist Church, North Stonington, Connecticut : the papers and addresses delivered at the dedication of a granite memorial on the site of the first church edifice, September 23, 1934 and "A discourse delivered at the one hundredth anniversary" of the Church in 1843</a>\n</td>\n<td>First Baptist Church (North Stonington, Conn.)</td>\n<td>b25749444</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3073298">Foundation in the holy mountains : a sermon preached at the opening of Trinity Church, Newtown, Thursday, February 3, 1870 / by E. Edwards Beardsley</a>\n</td>\n\n<td>Beardsley, E. Edwards (Eben Edwards), 1808-1891</td>\n<td>b30732980</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1150556">Founders and leaders of Connecticut, 1633-1783 edited by Charles Edward Perry.</a>\n</td>\n<td>Perry, Charles E. (Charles Edward), b. 1896, ed</td>\n<td>b11505564</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2588592">Four commemorative discourses : delivered on his sixty-third birth-day, February 19th, 1865, on the fortieth anniversary of his installation, March 12th, 1865, and on his retirement from pastoral duties, September 9th, 1866 / by Leonard Bacon</a>\n</td>\n<td>Bacon, Leonard, 1802-1881</td>\n<td>b25885923</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1774378">Franklin in 1800 / by Samuel Nott</a>\n\n</td>\n<td>Nott, Samuel, 1754-1852</td>\n<td>b17743783</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2623951">Geer s Hartford city directory</a>\n</td>\n<td>\n</td>\n<td>b26239516</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1142686">Genealogical and family history of the state of Connecticut a record of the achievements of her people in the making of a commonwealth and the founding of a nation. Editorial staff: William Richard Cutter, Edward Henry Clement, Samuel Hart, Mary Kingsbury Talcott, Frederick Bostwick, Ezra Scollay Stearns</a>\n</td>\n<td>Cutter, William Richard, 1847-1918</td>\n<td>b1142686x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1127686">Genealogical history, with short sketches and family records, of the early settlers of West Simsbury, now Canton, Conn. / by Abiel Brown with an introductory and commendatory notice by J. Burt</a>\n</td>\n<td>Brown, Abiel</td>\n<td>b11276861</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2518316">Genealogical history, with short sketches and family records, of the early settlers of West Simsbury, now Canton, Conn. / by Abiel Brown, esq. with an introductory and commendatory notice, by Rev. J. Burt</a>\n</td>\n<td>Brown, Abiel</td>\n\n<td>b25183163</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2644007">General catalogue / Theological Institute of Connecticut</a>\n</td>\n<td>Theological Institute of Connecticut</td>\n<td>b26440076</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2577845">General history of the town of Sharon : Litchfield County, Conn. from its first settlement / by Charles F. Sedgwick</a>\n</td>\n<td>Sedgwick, Charles F. (Charles Frederick), 1795-1882</td>\n<td>b25778456</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3078828">Gladness for great things done : an historical discourse for the jubilee of the Society for the Propagation of the Gospel : delivered in Trinity Church, Fairfield (Southport Borough) Conn., on the eighth Sunday after Trinity, August 10th, 1851 / by N.E. Cornwall</a>\n</td>\n\n<td>Cornwall, N. E. (Nathanael Ellsworth)</td>\n<td>b30788286</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1774842">Glastenbury for two hundred years: a centennial discourse, May 18th, A. D. 1853. With an appendix, containing historical and statistical papers of interest. By Rev. Alonzo B. Chapin</a>\n</td>\n<td>Chapin, A. B. (Alonzo Bowen), 1808-1858</td>\n<td>b17748422</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2548975">God s acre : Old Middle Street Burying-Ground, 1745-1905, in Goshen, Connecticut / photographs taken by Mary E. Brooks and Harry W. Flieg</a>\n</td>\n<td>\n</td>\n<td>b25489756</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1099772">Goodwin s annual legislative statistics of state officers, Senate, and House of Representatives of Connecticut .</a>\n\n</td>\n<td>\n</td>\n<td>b10997726</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1774812">Goshen in 1812 / by Lewis M. Norton</a>\n</td>\n<td>Norton, Lewis Mills, 1783-1860</td>\n<td>b17748124</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2289839">Greens Farms, Connecticut, the old West parish of Fairfield, historical sketches and reminiscences / by George Penfield Jennings</a>\n</td>\n<td>Jennings, George Penfield, 1855-1933</td>\n<td>b22898396</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1281730">Greenwich old & new : a history / illustrated with photographs, of Greenwich, Connecticut, from colonial days to the present, by Lydia Holland and Margaret Leaf</a>\n</td>\n<td>Holland, Lydia</td>\n<td>b12817302</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2549758">Griswold -- a history : being a history of the town of Griswold, Connecticut, from the earliest times to the entrance of our country into the world war in 1917 / by Daniel L. Phillips</a>\n</td>\n\n<td>Phillips, Daniel L. (Daniel Lyon), b. 1852</td>\n<td>b25497583</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2550492">Groton, Conn. 1705-1905 / by Charles R. Stark</a>\n</td>\n<td>Stark, Charles R. (Charles Rathbone), b. 1848</td>\n<td>b25504927</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3087404">Guide to New Haven and Yale University, comp. by E. Oviatt .</a>\n</td>\n<td>Oviatt, Edwin, 1874-1955, comp</td>\n<td>b3087404x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1638949">Guilford portraits : memorial epitaphs of Alderbrook and Westside with introductory elegies and essay / by Henry Pynchon Robinson ... 1815-1907</a>\n\n</td>\n<td>Robinson, Henry Pynchon, 1840-1913</td>\n<td>b16389499</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1774381">Haddam in 1808</a>\n</td>\n<td>Clarke, Levi Hubbard, 1782-1840</td>\n<td>b17743813</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2978940">Half-century discourse : on occasion of the fiftieth anniversary of his ordination as pastor of the First Church in Farmington, Conn. : delivered November 12th, 1856 / by Noah Porter</a>\n</td>\n<td>Porter, Noah, 1781-1866</td>\n<td>b29789400</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1092788">Half-century discourse, history of the church in Newington: its doctrine, its ministers, its experience presented in the discourse delivered on Tuesday the 16th of January, 1855 ... / by J. Brace</a>\n</td>\n<td>Brace, Joab, 1781-1861</td>\n<td>b10927888</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092613">Half-century sermon on some changes which have occurred in the First Congregational Society in New London, in this city, and in the county to which it pertains : delivered January 27th, 1857, and published by request of the Church and Society / by Abel McEwen</a>\n</td>\n<td>McEwen, Abel, 1780-1860</td>\n\n<td>b30926130</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3077219">Handbook of the Congregational Church in East Woodstock, CT</a>\n</td>\n<td>Congregational Church (East Woodstock, Conn.)</td>\n<td>b30772199</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1562332">Hartford in history : a series of papers / by resident authors edited by Willis I. Twitchell</a>\n</td>\n<td>\n</td>\n<td>b15623324</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1123950">Hartford in the olden time : its first thirty years / by Scaeva [pseud.] edited by W. M. B. Hartley</a>\n</td>\n\n<td>Stuart, I. W. (Isaac William), 1809-1861</td>\n<td>b11239505</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2643769">Hartford Seminary Foundation bulletin</a>\n</td>\n<td>\n</td>\n<td>b26437697</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2307539">Hartford, Conn., as a manufacturing, business and commercial center : with brief sketches of its history, attractions, leading industries, and institutions</a>\n</td>\n<td>Hartford (Conn.). Board of Trade</td>\n<td>b23075399</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2289852">Hebron, Connecticut, bicentennial, August 23d to 25th, 1908 : an account of the celebration of the two hundredth anniversary of the incorporation of the town : 1708-1908</a>\n\n</td>\n<td>\n</td>\n<td>b22898529</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1153687">Historic Connecticut (originally published under the title of "Connecticut trilogy") by Marguerite Allis illustrated with photographs by Samuel Chamberlain and drawings by the author</a>\n</td>\n<td>Allis, Marguerite, 1887-1958</td>\n<td>b11536871</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2289840">Historic Groton : comprising historic and descriptive sketches pertaining to Groton Heights, Center Groton, Poquonnoc Bridge, Noank, Mystic, and Old Mystic, Conn. / by local writers Charles F. Burgess, editor and publisher</a>\n</td>\n<td>\n</td>\n<td>b22898402</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1784434">Historic houses of Connecticut open to the public, by H. F. Randolph Mason</a>\n</td>\n<td>Mason, H. F. Randolph</td>\n<td>b17844344</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2289856">Historic Litchfield, 1721-1907 : being a short account of the history of the old houses of Litchfield / comp. from Kilbourn s History of Litchfield, Geo. C. Woodruff s History of the town of Litchfield, Kilbourn s History of Litchfield tradition, the Litchfield county centennial celebration, the Litchfield book of days, and Chronicles of a pioneer school, by Alice T. Bulkeley. Illustrated from original photographs by the compiler</a>\n</td>\n<td>Bulkeley, Alice Talcott, b. 1870</td>\n\n<td>b22898566</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1160525">Historic towns of the Connecticut River Valley / by George S. Roberts</a>\n</td>\n<td>Roberts, George S. (George Simon), b. 1860</td>\n<td>b1160525x</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2683541">Historical account of the celebration of the one hundred and fiftieth anniversary of the organization of the Congregational Church, of New Canaan, Conn., June 20, 1883 : with an appendix containing a full alphabetical list of the pastorate, deaconate, and membership of the church, and other historical items of church, educational, and general town interest / edited by the committee, Joseph Greenleaf, Amzi B. Davenport</a>\n</td>\n<td>\n</td>\n<td>b26835411</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2573705">Historical address : delivered in the Congregational church, of New Canaan, Conn., July 4th, 1876 / by Prof. Samuel St. John. With an appendix ... Also a list of soldiers who served in the war for the Union, and an obituary of Prof. St. John, resolutions, etc</a>\n</td>\n\n<td>St. John, Samuel, 1813-1876</td>\n<td>b25737053</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3084183">Historical address at the dedication of the Soldiers monument in Barkhamsted, September 10, 1897 / by Wm. Wallace Lee</a>\n</td>\n<td>Lee, W. W. (William Wallace), 1828-</td>\n<td>b30841835</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2504425">Historical address delivered at the 150th anniversary of the First Congregational Church, Goshen, Conn., Sept. 3, 1890 / by A.G. Hibbard</a>\n</td>\n<td>Hibbard, A. G. (Augustine George), b. 1833</td>\n<td>b25044254</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3079257">Historical address delivered by Rev. Cornelius W. Morrow, at the one hundredth anniversary of the dedication of the first house of worship erected on the site of the present Second Congregational Church, of Norwich, Conn., 1795-1895. With an introd. by Deacon George D. Coit</a>\n\n</td>\n<td>Second Congregational Church (Norwich, Conn.)</td>\n<td>b30792575</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3083079">Historical address in commemoration of the two hundred and fiftieth anniversary of the founding of Norwalk, September eleventh, 1651. Delivered in the armory in Norwalk, September eleventh, 1901, by Augustus Field Beard .</a>\n</td>\n<td>Beard, Augustus Field, 1833-1934</td>\n<td>b30830795</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2427006">Historical address, delivered in the First Congregational Church in Stamford, Ct. : at the celebration of the second centennial anniversary of the first settlement of the town / by J.W. Alvord</a>\n</td>\n<td>Alvord, John Watson, 1807-1880</td>\n<td>b24270064</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1710188">Historical addresses delivered by Hon. Samuel Church, October 20, 1841, and ex-Gov. A. H. Holley, July 4, 1876, together with a record of proceedings at the centennial celebration in Salisbury Conn</a>\n</td>\n<td>Salisbury (Conn.)</td>\n<td>b17101888</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1707243">Historical catalogue of the First Church in Hartford : 1633-1885</a>\n</td>\n<td>First Church of Christ (Hartford, Conn.)</td>\n\n<td>b17072438</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2588599">Historical catalogue of the members of the First Church of Christ in New Haven, Connecticut (Center Church) : A.D. 1639-1914 / compiled by Franklin Bowditch Dexter</a>\n</td>\n<td>Dexter, Franklin Bowditch, 1842-1920</td>\n<td>b25885996</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2643200">Historical catalogue of the Theological Institute of Connecticut</a>\n</td>\n<td>Theological Institute of Connecticut</td>\n<td>b26432006</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2577880">Historical collections relating to the town of Salisbury, Litchfield County Connecticut</a>\n</td>\n\n<td>Salisbury Association (Conn.)</td>\n<td>b25778808</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3083606">Historical discourse : A New Years sermon delivered in the Congregational Church, Jewett City, Conn., January 13, 1856 / by Thomas L. Shipman</a>\n</td>\n<td>Shipman, Thomas L. (Thomas Leffingwell), 1798-1886</td>\n<td>b30836062</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3045706">Historical discourse : delivered on the fiftieth anniversary of his settlement / by Henry Bromley at Mansfield, Connecticut, June 5, 1887</a>\n</td>\n<td>Bromley, Henry</td>\n<td>b30457063</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1026035">Historical discourse delivered at the centennial celebration of the Stone Meeting House : East Haven, Conn., Wednesday, September 16, 1874 / by D. William Havens</a>\n\n</td>\n<td>Havens, D. William (Daniel William), 1815-1889</td>\n<td>b10260353</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3083811">Historical discourse delivered by E. S. Holloway, pastor of Greenville Baptist Church : at the dedication of their Chapel, Wednesday, Dec. 30, 1885</a>\n</td>\n<td>Holloway, E. S. (Edwin S.)</td>\n<td>b30838113</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3044810">Historical discourse delivered on the one hundred and seventieth anniversary of the formation of the First Congregational Church, Madison, Conn., November 18, 1877 / by James A. Gallup</a>\n</td>\n<td>Gallup, James A</td>\n<td>b30448104</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b2569711">Historical discourse of the Congregational Church in Killingworth, Connecticut, May 31, 1870 / by William Miller</a>\n</td>\n<td>Miller, William, b. 1817</td>\n<td>b25697110</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2705306">Historical discourse preached in the First Presbyterian Church, Thompsonville, Conn. on Sabbath, December 30, 1866 / by Rev. Carson W. Adams</a>\n</td>\n<td>Adams, Carson W. (Carson Wilson), 1811-1897</td>\n\n<td>b27053064</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2878330">Historical discourse preached on the one hundred and fiftieth anniversary of the organization of the United Church : May 8th, 1892 / by Rev. Theodore T. Munger ... and an historical sketch of the United Society, presented to the society April 28th, 1879, by Hon. Henry E. Pardee</a>\n</td>\n<td>United Church (New Haven, Conn.)</td>\n<td>b2878330x</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2348025">Historical landmarks of Connecticut : a few notes ... respecting those already marked and ... suggestions regarding others that may be marked, for the use of the United Committees on Historical Landmarks of Connecticut</a>\n</td>\n<td>\n</td>\n<td>b23480257</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3045721">Historical letter of the First Baptist Church of Mansfield, Conn. : commemorating the centennial of the church and read at the meeting with it of the Ashford Baptist Association, September 28 and 29, 1909 / Leonard Smith, pastor, L.J. Storrs, clerk and treasurer</a>\n</td>\n\n<td>First Baptist Church (Mansfield, Conn.)</td>\n<td>b3045721x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2583789">Historical manual of the Congregational Church, Poquonock, Ct. / Organized June 2, 1841</a>\n</td>\n<td>Congregational Church (Poquonock, Conn.)</td>\n<td>b25837898</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1014999">Historical notes of the Congregational Churches in New London County from 1836-1869, Presented to the Conference at Montville, October 12th, 1869</a>\n</td>\n<td>Arms, Hiram P</td>\n<td>b10149995</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1224520">Historical notes on the constitutions of Connecticut, 1639-1818 : particularly on the origin and progress of the movement which resulted in the Convention of 1818 and the adoption of the present constitution / by J. Hammond Trumbull</a>\n\n</td>\n<td>Trumbull, J. Hammond (James Hammond), 1821-1897</td>\n<td>b12245203</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3083080">Historical notice of the Congregational Church in Enfield, Conn. with the confession of faith, the covenant, and a chronological catalogue of the members since 1783</a>\n</td>\n<td>Congregational Church (Enfield, Conn.)</td>\n<td>b30830801</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3079259">Historical notice of the Congregational Church in North Coventry, Conn. : with the articles of faith and a catalogue of members</a>\n</td>\n<td>Congregational Church (North Coventry, Conn.)</td>\n<td>b30792599</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b2973631">Historical notice of the First Congregational Church in East Hartford, Conn. : with the articles of faith, covenant, and a catalogue of members</a>\n</td>\n<td>First Congregational Church (East Hartford, Conn.)</td>\n<td>b29736316</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1091556">Historical notices of Connecticut pub. under the patronage of the Connecticut Historical Society</a>\n</td>\n<td>Porter, William S. (William Smith), 1799-1866</td>\n\n<td>b10915564</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1419412">Historical records of the town of Cornwall, Litchfield County, Connecticut / collected and arranged by Theodore S. Gold</a>\n</td>\n<td>Gold, Theodore S. (Theodore Sedgwick), 1818-1906</td>\n<td>b14194120</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2184438">Historical sermon delivered before the Centre Church, New Britain, Conn., July 9, 1876</a>\n</td>\n<td>Denison, John H. (John Henry), 1841-1924</td>\n<td>b21844380</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2589709">Historical sermon of College Street Church, New Haven : preached at the last sermon in the building on College Street, Sunday, December 8th, 1895 / by the pastor, Rev. William W. McLane</a>\n</td>\n\n<td>McLane, William W. (William Ward), 1846-1931</td>\n<td>b25897093</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2932624">Historical sermon, preached in St. Andrew s Church, Bloomfield, Ct., April 8th, 1866 / by Rev. J. E. Heald</a>\n</td>\n<td>Heald, J. E</td>\n<td>b29326242</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3073122">Historical sketch and manual of the First Congregational Church in Ridgefield, Conn</a>\n</td>\n<td>Congregational Church, Ridgefield Conn. (First)</td>\n<td>b30731227</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2705519">Historical sketch of (Kensington,) Berlin, Conn., during the last hundred years : an address, delivered by request at the Congregational church, in that place, July 4, 1876 / by Edward W. Robbins</a>\n\n</td>\n<td>Robbins, Edward W. (Edward Wright), b. 1822</td>\n<td>b2705519x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2571445">Historical sketch of Lisbon, Conn. : from 1786-1900 / by Henry F. Bishop</a>\n</td>\n<td>Bishop, Henry Fitch, 1820-1910</td>\n<td>b25714454</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093722">Historical sketch of old Fair Haven with additional notes</a>\n</td>\n<td>Bushnell, Curtis C. (Curtis Clark), b. 1870</td>\n<td>b3093722x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b2718527">Historical sketch of Stonington & Westerly : a sketch of their business interest, past and present / by Richard A. Wheeler</a>\n</td>\n<td>Wheeler, Richard Anson, b. 1817</td>\n<td>b27185278</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3091827">Historical sketch of the Baptist churches in Saybrook, Connecticut</a>\n</td>\n\n<td>\n</td>\n<td>b30918273</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2584251">Historical sketch of the Congregational Church : and parish of Canton Center, Conn., formerly West Simsbury, organized 1750 / comp. by Rev. Frederick Alvord and Miss Ida R. Gridley</a>\n</td>\n<td>Alvord, Frederick, 1828-1903</td>\n<td>b25842511</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2949731">Historical sketch of the Congregational Church of Chester, Conn., from its organization, September 15, 1742, to September 15, 1892 : a period of one hundred and fifty years / by Amos Sheffield Chesebrough and Alexander Hall</a>\n</td>\n<td>Chesebrough, Amos S. (Amos Sheffield), 1813-1905</td>\n<td>b29497310</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2933759">Historical sketch of the Congregational society and church in Bristol, Conn. : with the articles of faith, covenant and standing rules of the church : together with a catalogue of members since its gathering and a catalogue of members April 1st, 1852</a>\n\n</td>\n<td>First Congregational Church (Bristol, Conn.)</td>\n<td>b29337598</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3078155">Historical sketch of the First Church in Norwalk : with the articles of faith, covenant and catalogue of members, May 4, 1885</a>\n</td>\n<td>First Church (Norwalk, Conn.)</td>\n<td>b30781553</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2550859">Historical sketch of the First Congregational Church in Haddam, Connecticut / by the pastor, Everett E. Lewis, delivered July 9th, 1876, and revised and repeated Sept. 8th, 78</a>\n</td>\n<td>Lewis, Everett E. (Everett Edward), 1837-1928</td>\n<td>b25508593</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1150214">Historical sketch of the First Congregational Church of Brookfield, Connecticut, and of the town of Brookfield</a>\n</td>\n<td>Hawley, Emily C. (Emily Carrie), b. 1855</td>\n<td>b11502149</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2704593">Historical sketch of the First Presbyterian Church and Society of Hartford, Conn</a>\n</td>\n<td>\n</td>\n\n<td>b27045936</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2590319">Historical sketch of the First Universalist Church and Society in New Haven, Conn. / by Phebe A. Hanaford</a>\n</td>\n<td>Hanaford, Phebe A. (Phebe Ann), 1829-1921</td>\n<td>b25903196</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092836">Historical sketch of the New London Baptist Association from its origins in 1817 to 1850 together with a history of the churches of which it is composed</a>\n</td>\n<td>\n</td>\n<td>b30928369</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2446332">Historical sketch of the Protestant Episcopal Church in Branford, Conn., 1784-1882 / by Rev. Melville K. Bailey</a>\n</td>\n\n<td>Bailey, Melville K. (Melville Knox), b. 1856</td>\n<td>b24463322</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2545329">Historical sketch of the town of Enfield : compiled under the direction of the committee of arrangements for celebrating the centennial anniversary of our independence, July 4, 1876 / by A. Johnson, Geo. H. Booth, and L. H. Pease, M.D., committee</a>\n</td>\n<td>Johnson, A</td>\n<td>b25453294</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2545359">Historical sketch of Turkey Hills and East Granby, Connecticut / by Albert Carlos Bates</a>\n</td>\n<td>Bates, Albert Carlos, b. 1865</td>\n<td>b25453592</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3077167">Historical sketch of Union lodge no. 5, F. & A.M</a>\n\n</td>\n<td>Phelps, I. Newton</td>\n<td>b30771675</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1058847">Historical sketch. Statistics and rules of the North Association and Consociation of Litchfield County</a>\n</td>\n<td>Litchfield North Association</td>\n<td>b10588474</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3073294">Historical sketches and rules of Fairfield East Association and Consociation with statistical notices of the consociated churches</a>\n</td>\n<td>Fairfield East Association and Consociation (Fairfield, Conn.)</td>\n<td>b30732943</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1745658">Historical sketches of Meriden Connecticut. By G. W. Perkins</a>\n</td>\n<td>Perkins, G. W. (George William), 1804-1856</td>\n<td>b17456587</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1720622">Historical sketches of the First Church in Hartford : a centennial discourse delivered in the First Church, June 26, 1836 / by Joel Hawes</a>\n</td>\n<td>Hawes, Joel, 1789-1867</td>\n\n<td>b17206224</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1774786">Historical sketches of the town of Milford</a>\n</td>\n<td>Ford, George Hare, b. 1848</td>\n<td>b17747867</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1760694">History and genealogy of the families of old Fairfield ... compiled and edited by Donald Lines Jacobus, M.A., for the Eunice Dennie Burr chapter, Daughters of the American revolution, Fairfield, Connecticut</a>\n</td>\n<td>Jacobus, Donald Lines, 1887-1970</td>\n<td>b17606949</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093226">History of "The Fund for Ministers" belonging to the General Conference of the Congregational Churches of Connecticut : with some account of other organizations for ministerial aid</a>\n</td>\n\n<td>Anderson, Joseph, 1836-1916</td>\n<td>b30932269</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2324365">History of Berlin, Connecticut / by Catharine M. North rearranged and edited with foreword by Adolph Burnett Benson</a>\n</td>\n<td>North, Catharine M. (Catharine Melinda), 1840-1914</td>\n<td>b2324365x</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1260445">History of Bridgeport and vicinity / ed. by George C. Waldo, Jr</a>\n</td>\n<td>Waldo, George C. (George Curtis), 1888-1956</td>\n<td>b12604458</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2876545">History of Chapel Street Church : a discourse delivered on the twentieth anniversary of the origin of the Chapel Street Church and Ecclesiastical Society / by W.T. Eustis</a>\n\n</td>\n<td>Eustis, William T. (William Tappan), 1821-1888</td>\n<td>b2876545x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2841141">History of Cheshire, Connecticut, from 1694 to 1840 : including Prospect, which, as Columbia Parish, was a part of Cheshire until 1829 / compiled and written by Joseph Perkins Beach</a>\n</td>\n<td>Beach, Joseph Perkins, 1828-1911</td>\n<td>b28411419</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1153131">History of Connecticut in monographic form, Norris Galpin Osborn, editor .</a>\n</td>\n<td>Osborn, Norris Galpin, b. 1858, ed</td>\n<td>b11531319</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b2511686">History of Connecticut in monographic form. Index</a>\n</td>\n<td>Osborn, Norris Galpin, b. 1858</td>\n<td>b25116861</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1016279">History of Cromwell : a sketch / by M.S. Dudley</a>\n</td>\n<td>Dudley, M. S. (Myron Samuel), 1837-1905</td>\n\n<td>b10162793</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1775100">History of Danbury, Conn., 1684-1896 / from notes and manuscript left by James Montgomery Bailey compiled with additions by Susan Benedict Hill</a>\n</td>\n<td>Bailey, James M. (James Montgomery), 1841-1894</td>\n<td>b17751007</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3084884">History of Darien from 1640 to 1928 / as compiled by the Teachers of the Darien Public Schools</a>\n</td>\n<td>\n</td>\n<td>b30848842</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1259586">History of Durham, Connecticut, from the first grant of land in 1662 to 1866 / By William Chauncey Fowler</a>\n</td>\n\n<td>Fowler, William Chauncey, 1793-1881</td>\n<td>b1259586x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1096933">History of East Haven / by Sarah E. Hughes</a>\n</td>\n<td>Hughes, Sarah E. (Sarah Eva)</td>\n<td>b10969330</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1281269">History of eastern Connecticut embracing the counties of Tolland, Windham, Middlesex and New London, by Pliny Le Roy Harwood .</a>\n</td>\n<td>Harwood, Pliny LeRoy, b. 1876</td>\n<td>b12812699</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1776740">History of Fairfield County, Connecticut, 1639-1928 / by Lynn Winfield Wilson</a>\n\n</td>\n<td>Wilson, Lynn Winfield</td>\n<td>b17767404</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1248505">History of Fairfield county, Connecticut, with illustrations and biographical sketches of its prominent men and pioneers. Comp. under the supervision of D. Hamilton Hurd</a>\n</td>\n<td>Hurd, D. Hamilton (Duane Hamilton), comp</td>\n<td>b12485056</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2274191">History of Grace Church, Hamden, Conn. : from its organization March 1, 1790 to July 1, 1912 / by James Edward Coley</a>\n</td>\n<td>Coley, James Edward, 1832-1916</td>\n<td>b22741914</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1082649">History of Hartford County, Connecticut, 1633-1928 : being a study of the first makers of the Constitution and the story of their lives, of their descendents and of all who have come / by Charles W. Burpee</a>\n</td>\n<td>Burpee, Charles W. (Charles Winslow), b. 1859</td>\n<td>b1082649x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2569662">History of Kent, Connecticut : including biographical sketches of many of its present or former inhabitants : 1897 / Francis Atwater</a>\n</td>\n<td>Atwater, Francis, b. 1858</td>\n\n<td>b25696622</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1777034">History of Litchfield county, Connecticut, with illustrations and biographical sketches of its prominent men and pioneers</a>\n</td>\n<td>\n</td>\n<td>b17770348</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1281050">History of Manchester, Connecticut, by Mathias Spiess and Percy W. Bidwell</a>\n</td>\n<td>Spiess, Mathias, b. 1873</td>\n<td>b12810502</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2589666">History of Methodism in New Haven : a discourse delivered to the United Methodist congregations of the city at the George St. M.E. Church on Thanksgiving Day, November 24, 1859 / by George W. Woodruff</a>\n</td>\n\n<td>Woodruff, George W</td>\n<td>b25896660</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2291614">History of Middlefield and Long Hill / by Thomas Atkins</a>\n</td>\n<td>Atkins, Thomas, 1797-1822</td>\n<td>b22916143</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1775227">History of Middlesex county, Connecticut, with biographical sketches of its prominent men</a>\n</td>\n<td>\n</td>\n<td>b17752279</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1280942">History of Milford, Connecticut, 1639-1939, compiled and written by the Federal writers project of the Works project [i. e. progress] administration for the state of Connecticut</a>\n\n</td>\n<td>Federal Writer s Project for the State of Connecticut</td>\n<td>b12809421</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1781378">History of Montville, Connecticut : formerly the North parish of New London from 1640 to 1896 / comp. and arranged by Henry A. Baker</a>\n</td>\n<td>Baker, Henry A. (Henry Augustus), b. 1823</td>\n<td>b17813785</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1103347">History of Naugatuck, Connecticut</a>\n</td>\n<td>Green, Constance McLaughlin, 1897-1975</td>\n<td>b11033472</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1109460">History of New Britain : with sketches of Farmington and Berlin, Connecticut. 1640-1889 / By David N. Camp, A. M</a>\n</td>\n<td>Camp, David N. (David Nelson), 1820-1916</td>\n<td>b11094606</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1780787">History of New Haven County, Connecticut / edited by J.L. Rockey assisted by a corps of writers</a>\n</td>\n<td>\n</td>\n\n<td>b17807876</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1161392">History of New London county, Connecticut : with biographical sketches of many of its pioneers and prominent men / comp. under the supervision of D. Hamilton Hurd.</a>\n</td>\n<td>Hurd, D. Hamilton (Duane Hamilton)</td>\n<td>b11613920</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1249015">History of New London, Connecticut : from the first survey of the coast in 1612 to 1860 : with memoir of the author / by Frances Manwaring Caulkins</a>\n</td>\n<td>Caulkins, Frances Manwaring, 1795-1869</td>\n<td>b12490155</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1691936">History of Norfolk, Litchfield County, Connecticut / opening chapters by Joseph Eldridge compiled by Theron Wilmot Crissey</a>\n</td>\n\n<td>Crissey, Theron Wilmot</td>\n<td>b16919361</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1778345">History of Norwich, Connecticut : from its possession by the Indians to the year 1866 / by Frances Manwaring Caulkins also a brief sketch of the life of the author to which is added an appendix ... continuing the history to ... 1873</a>\n</td>\n<td>Caulkins, Frances Manwaring, 1795-1869</td>\n<td>b17783458</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1769740">History of Norwich, Connecticut : from its possession by the Indians, to the year 1866 / by Frances Manwaring Caulkins</a>\n</td>\n<td>Caulkins, Frances Manwaring, 1795-1869</td>\n<td>b17697402</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2576086">History of Oxford / by W.C. Sharpe</a>\n\n</td>\n<td>Sharpe, W. C. (William Carvosso), 1839-1924</td>\n<td>b25760865</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3083555">History of Oxford: Part first, church records, births, marriages, deaths, etc., 1747-1883 / by W.C. Sharpe</a>\n</td>\n<td>Sharpe, W. C. (William Carvosso), 1839-1924</td>\n<td>b30835550</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1797977">History of Pomfret : a discourse delivered on the day of annual thanksgiving, in the First Church in Pomfret, Nov. 19th, 1840 / by D. Hunt</a>\n</td>\n<td>Hunt, Daniel, 1806-1869</td>\n<td>b17979778</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1010944">History of Rockville, from 1823 to 1871 : including also a brief sketch of facts which ante-date the incorporation of Vernon, and bring dates up to the time when this history begins / by Wm. T. Cogswell</a>\n</td>\n<td>Cogswell, William Thompson, b. 1802</td>\n<td>b10109444</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1087535">History of Saint Mark s Church, New Britain, Conn., and of its predecessor Christ Church, Wethersfield and Berlin : from the first Church of England service in America to nineteen hundred and seven / by James Shepard</a>\n</td>\n<td>Shepard, James, 1838-1926</td>\n\n<td>b10875359</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1691932">History of Seymour, Connecticut : with biographies and genealogies / by W.C. Sharpe</a>\n</td>\n<td>Sharpe, W. C. (William Carvosso), 1839-1924</td>\n<td>b16919324</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1768099">History of Simsbury, Granby, and Canton : from 1642 to 1845 / by Noah A. Phelps</a>\n</td>\n<td>Phelps, Noah Amherst, 1788-1872</td>\n<td>b17680992</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2169119">History of Southington, Conn. ... : public and personal happenings, principally of the past fifty years / compiled by Francis Atwater</a>\n\n</td>\n<td>Atwater, Francis, b. 1858</td>\n<td>b21691198</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2655755">History of St. Luke s Church in the town of Darien, Noroton, Conn., 1855-1930 / by Simon W. Cooper</a>\n</td>\n<td>Cooper, Simon W</td>\n<td>b26557551</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2715520">History of St. Paul s Parish, from 1879 to 1904 : a paper read at the 75th Anniversary of St. Paul s Church, New Haven, Conn., All Saints Day, 1905 / by the Right Rev. Edwin S. Lines</a>\n</td>\n<td>Lines, Edwin S. (Edwin Stevens), 1845-1927</td>\n<td>b27155201</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1232335">History of Stamford, Connecticut : from its settlement in 1641, to the present time, including Darien, which was one of its parishes until 1820 / by Rev. E.B. Huntington</a>\n</td>\n<td>Huntington, E. B. (Elijah Baldwin), 1816-1877</td>\n<td>b12323354</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2580528">History of Stratford, Connecticut, 1639-1939 / by Wm. Howard Wilcoxson</a>\n</td>\n<td>Wilcoxson, William Howard</td>\n\n<td>b25805289</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1217774">History of the 13th Infantry Regiment of Connecticut Volunteers, during the Great Rebellion. By Homer B. Sprague .</a>\n</td>\n<td>Sprague, Homer B. (Homer Baxter), 1829-1918</td>\n<td>b1217774x</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2274195">History of the Advent Christian church of Hartford, Conn. : from the first meetings in 1838 to January 1st, 1906, as gathered from records, recollections, and inquiries</a>\n</td>\n<td>Pierce, William J</td>\n<td>b22741951</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3077168">History of the ancient maritime interests of New Haven</a>\n</td>\n\n<td>Trowbradge, Thomas Rutherford</td>\n<td>b30771687</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1800114">History of the Bridgeport Post Office, from 1800 to 1900 : with additional important postal information</a>\n</td>\n<td>\n</td>\n<td>b18001142</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1300497">History of the city of New Haven to the present time / by an association of writers. Ed. by Edward E. Atwater ... With biographies, portraits and illustrations</a>\n</td>\n<td>Atwater, Edward E. (Edward Elias), 1816-1887</td>\n<td>b13004979</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2577830">History of the colony of New Haven to its absorption into Connecticut / By Edward E. Atwater</a>\n\n</td>\n<td>Atwater, Edward E. (Edward Elias), 1816-1887</td>\n<td>b25778304</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2569707">History of the Congregational Church in South Killingly, Conn./ with a record of doings at its 150th anniversary</a>\n</td>\n<td>Congregational Church (South Killingly, Conn.)</td>\n<td>b25697079</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3045734">History of the Congregational Church, North Mansfield, Conn., 1744-1879 / by G.O. Southwick</a>\n</td>\n<td>Southwick, G. O</td>\n<td>b30457348</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1795274">History of the diocese of Hartford by Rev. James H. O Donnell</a>\n</td>\n<td>O Donnell, James H</td>\n<td>b17952748</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1053771">History of the First Church in Cromwell 1715-1915 / edited by the Reverend Homer Wesley Hildreth, Minister</a>\n</td>\n<td>Hildreth, Homer Wesley</td>\n\n<td>b10537715</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2553002">History of the First Church in Hartford, 1633-1883</a>\n</td>\n<td>Walker, George Leon, 1830-\n1900</td>\n<td>b25530021</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1161856">History of the First Congregational Church, Stonington, Conn., 1674-1874 : with the report of bi-centennial proceedings, June 3, 1874. With appendix containing statistics of the church / by Richard A. Wheeler</a>\n</td>\n<td>Wheeler, Richard Anson, b. 1817</td>\n<td>b11618565</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2549138">History of the First Ecclesiastical Society in East Windsor : from its formation in 1752, to the death of its second pastor, Rev. Shubael Bartlett, in 1854 / with a sketch of the life of Rev. Mr. Bartlett, and his farewell discourse, prepared for the fiftieth anniversary of his settlement</a>\n</td>\n\n<td>Roe, A. S. (Azel Stevens), 1798-1886</td>\n<td>b25491386</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1116497">History of the house of P. & F. Corbin, MCMIV ... issued in commemoration of the fiftieth anniversary of the founding of the house .</a>\n</td>\n<td>Comstock, John B</td>\n<td>b11164979</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1205098">History of the Indians of Connecticut from the earliest known period to 1850. With an introd. by Wilcomb E. Washburn</a>\n</td>\n<td>De Forest, John William, 1826-1906</td>\n<td>b12050982</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3093683">History of the Methodist Episcopal Church of Shelton, Conn. : Edited by Rev. Arthur J. Smith, compiled by Thomas Chadeayne, George W. Beardsley, Oscar Beardsley, Rev. Arthur J. Smith</a>\n</td>\n<td>Smith, Arthur J.</td>\n<td>b30936834</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2973254">History of the Moodus Baptist Church, 1809-1911</a>\n</td>\n<td>\n</td>\n\n<td>b29732542</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2274196">History of the Second Baptist Church of Danbury, Conn., from its foundation to the present time / by a former pastor. [Completed by A.C. Hubbard]</a>\n</td>\n<td>Stone, Geo. M. (George M.)</td>\n<td>b22741963</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1225100">History of the Second church of Christ in Hartford / by Edwin Pond Parker</a>\n</td>\n<td>Parker, Edwin Pond, 1836-1920</td>\n<td>b12251008</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3076177">History of the Second Congregational Church of Cornwall memorial sermon delivered at North Cornwall, Conn., July 9, 1876, by Rev. Charles N. Fitch. From the history of Cornwall</a>\n</td>\n\n<td>Fitch, Charles Newton, 1846-1924</td>\n<td>b30761773</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1108064">History of the South Congregational Church, New Haven : from its origin in 1852 till January 1, 1865 / by Gerard Hallock</a>\n</td>\n<td>Hallock, Gerard, 1800-1866</td>\n<td>b11080644</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1774352">History of the town of Goshen, Connecticut : with genealogies and biographies / based upon the records of Deacon Lewis Mills Norton, 1897 by Rev. A. C. Hibbard</a>\n</td>\n<td>Hibbard, A. G. (Augustine George), b. 1833</td>\n<td>b17743527</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1124331">History of the town of Hamden, Connecticut : with an account of the centennial celebration, June 15th, 1886 / prepared and published by authority of the town under the editorial supervision of William P. Blake</a>\n\n</td>\n<td>Blake, William P. (William Phipps), 1826-1910</td>\n<td>b11243314</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1691937">History of the town of Ledyard, 1650-1900. By Rev. John Avery</a>\n</td>\n<td>Avery, John, 1819-1902</td>\n<td>b16919373</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2436287">History of the town of Litchfield, Connecticut / by George C. Woodruff</a>\n</td>\n<td>Woodruff, George C. (George Catlin), 1805-1885</td>\n<td>b24362876</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1694052">History of the town of Plymouth, Connecticut : with an account of the centennial celebration May 14 and 15, 1895 : also a sketch of Plymouth, Ohio, settled by local families / compiled by Francis Atwater</a>\n</td>\n<td>Atwater, Francis, b. 1858</td>\n<td>b16940520</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2168920">History of the town of Stonington, county of New London, Connecticut, from its first settlement in 1649 to 1900 : with a genealogical register of Stonington families / by Richard Anson Wheeler</a>\n</td>\n<td>Wheeler, Richard Anson, b. 1817</td>\n\n<td>b21689209</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2060963">History of the towns of New Milford and Bridgewater, Connecticut, 1703-1882 / by Samuel Orcutt</a>\n</td>\n<td>Orcutt, Samuel, 1824-1893</td>\n<td>b20609632</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092154">History, articles of faith and covenants, together with the rules, and catalogue of members of the Second Congregationol [sic] Church : in South Windsor, Conn. May 29, 1861</a>\n</td>\n<td>Second Congregational Church (South Windsor, Conn.)</td>\n<td>b30921545</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3094028">History, confession of faith, covenants, and standing rules of the Center Church, Fair Haven, Ct. Together with a catalog of its members, and baptized children, to January 1, 1856. / Published by order of the Standing Committee, W.B. Lee, Pastor</a>\n</td>\n\n<td>\n</td>\n<td>b3094028x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1776235">Honor roll of Litchfield County Revolutionary soldiers / Josephine Ellis Richards, editor-in-chief</a>\n</td>\n<td>\n</td>\n<td>b17762352</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2163506">Horseshoe nails to squeeze bottles a new look at Stonington, Connecticut</a>\n</td>\n<td>Haynes, Williams, 1886-1960</td>\n<td>b21635067</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1230964">How the other half lived an ethnic history of the old East Side and South End of Hartford, by Robert E. Pawlowski and the Northwest Catholic High School urban studies class</a>\n\n</td>\n<td>Pawlowski, Robert E</td>\n<td>b12309643</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3076041">If a house could talk being a history of a flood of released recollections, the resurrection of old letters and photographs pertaining to Litchfield and the Vaill homestead covering a past dating fronm 1867 to 1876 in which I was vitally interested, an unabridged past dating from 1876 to 1915, an interim of two years, when by some strange decree of fate it was ordained that I should spend the summer months close by the spot on which Julia last tread the earth, and where her soul took flight, a fittig atmosphere in where to gather these stray leaves within the confines of these covers to the memory of Julia and for "auld lang syne," by Cora Smith Gould</a>\n</td>\n<td>Gould, Cora Smith, b. 1855</td>\n<td>b30760410</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1161287">Illustrated popular biography of Connecticut comp. and pub. by J.A. Spalding</a>\n</td>\n<td>Spalding, J. A. (John Augustus), b. 1833</td>\n<td>b11612873</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1773843">Immigrant settlements in Connecticut: their growth and characteristics. By Samuel Koenig, PH. D. Works Progress Administration, Federal Writers Project for the State of Connecticut</a>\n</td>\n<td>Koenig, Samuel</td>\n<td>b1773843x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1158087">In olde Connecticut being a record of quaint, curious and romantic happenings there in colonial times and later, by Charles Burr Todd</a>\n</td>\n<td>Todd, Charles Burr, 1849-</td>\n\n<td>b11580872</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3087849">In pace : in memoriam of the men who fell in the massacre in Fort Griswold, Groton Heights, Connecticut, September 6th, 1781</a>\n</td>\n<td>Collier, Thomas S. (Thomas Stephens), 1842-1893</td>\n<td>b30878494</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1312772">In the village</a>\n</td>\n<td>Bailey, Anthony, 1933-</td>\n<td>b1312772x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1723625">Index to "History of New London, Connecticut" : from the first survey of the coast in 1612 to 1860.</a>\n</td>\n\n<td>Griswold, Cecelia, b. 1876</td>\n<td>b17236253</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1754214">Indian names of places, etc., in and on the borders of Connecticut : with interpretations of some of them / by J. Hammond Trumbull</a>\n</td>\n<td>Trumbull, J. Hammond (James Hammond), 1821-1897</td>\n<td>b17542145</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3091847">Inscriptions at Salisbury Center, Lime Rock, etc. / compiled by Malcolm Day Rudd</a>\n</td>\n<td>Rudd, Malcolm Day, 1877-</td>\n<td>b30918479</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2073580">Inscriptions from gravestones in the old burying ground, Norwich Town, Connecticut / [by] George S. Porter. Published by the Society of the founders of Norwich, Connecticut</a>\n\n</td>\n<td>Porter, George Shephard</td>\n<td>b20735807</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092256">Inscriptions from the Long Society Burying Ground, Preston, Conn. By George S. Porter</a>\n</td>\n<td>Porter, George Shepard</td>\n<td>b30922562</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3044850">Inscriptions on tombstones in Madison, Conn., erected prior to 1800 : reprinted from Papers of the New Haven Colony Historical Society, vol. VI</a>\n</td>\n<td>\n</td>\n<td>b30448505</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b2572633">Inscriptions on tombstones in Milford, Conn., erected prior to 1800 : together with a few of aged persons who died after that date / Transcribed and annotated by Nathan G. Pond</a>\n</td>\n<td>Pond, Nathan G. (Nathan Gillett), b. 1832</td>\n<td>b2572633x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2711879">Introductory address delivered at the court house in Litchfield, Conn., April 9th, 1856 : before the Litchfield County Historical and Antiquarian Society, on the occasion of completing its organization / by G.H. Hollister</a>\n</td>\n<td>Hollister, G. H. (Gideon Hiram), 1817-1881</td>\n\n<td>b27118794</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1234681">Journal of the proceedings of the convention of delegates, convened at Hartford, August 26, 1818 : for the purpose of forming a constituion of civil government for the people of the State of Connecticut</a>\n</td>\n<td>Connecticut. Constitutional Convention (1818)</td>\n<td>b12346810</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1129090">Landmarks of New Canaan</a>\n</td>\n<td>\n</td>\n<td>b11290900</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1701041">Laws, etc. (Compiled statutes : 1849);'The revised statutes of the state of Connecticut ... / Published by authority of the General Assembly'</a>\n</td>\n\n<td>Connecticut</td>\n<td>b1701041x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3083839">Laws, etc. (Session laws : 1756);'Acts and laws passed by the General Court or Assembly of His Majesty s English Colony of Connecticut in New England in America : held at New Haven, (by adjournment, and special order of ... the Governor ...) on Wednesday the twenty first day of January ... 1756'</a>\n</td>\n<td>Connecticut</td>\n<td>b30838393</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2303881">Laws, etc;'The charter and ordinances of the city of New Haven, together with statutes relating to the city'</a>\n</td>\n<td>New Haven (Conn.)</td>\n<td>b23038810</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2718058">Leading business men of New London and vicinity, embracing Groton and Niantic</a>\n\n</td>\n<td>Beckford, William Hale</td>\n<td>b2718058x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2410355">Letters developing the character and views of the Hartford Convention / by "One of the convention."</a>\n</td>\n<td>Otis, Harrison Gray, 1765-1848</td>\n<td>b2410355x</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1220078">Letters from the English kings and queens, Charles II, James II, William and Mary, Anne, George II, &c. : to the governors of the Colony of Connecticut, together with the answers thereto, from 1635 to 1749 : and other original, ancient, literary and curious documents / compiled from files and records in the office of the Secretary of the State of Connecticut by R.R. Hinman</a>\n</td>\n<td>\n</td>\n<td>b12200785</td>\n<td>CT Room</td>\n</tr>\n<tr>\n\n<td>\n<a href="http://www.consuls.org/record=b1796439">List of Congregational ecclesiastical societies established in Connecticut before October 1818, with their changes. Published by the Connecticut Historical Society</a>\n</td>\n<td>Connecticut Historical Society</td>\n<td>b17964398</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1150485">List of officials, civil, military, and ecclesiastical of Connecticut colony, from March 1636 through 11 October 1677, and of New Haven colony throughout its separate existence also soldiers in the Pequot war who then or subsequently resided within the present bounds of Connecticut. Compiled by Donald Lines Jacobus, M.A. Connecticut tercentenary publication of the Connecticut society of the Order of the founders and patriots of America</a>\n</td>\n<td>Jacobus, Donald Lines, 1887-1970</td>\n\n<td>b11504857</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2289857">Litchfield and Morris inscriptions : a record of inscriptions upon the tombstones in the towns of Litchfield and Morris, Ct. / Transcribed by Charles Thomas Payne</a>\n</td>\n<td>Payne, Charles Thomas</td>\n<td>b22898578</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2571494">Litchfield centennial celebration, July 4th, A.D. 1876 : historical address / by George C. Woodruff</a>\n</td>\n<td>Woodruff, George C. (George Catlin), 1805-1885</td>\n<td>b25714946</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1764044">Litchfield County choral union, 1900-19l2. Founded to honor the memory of Robbins Battell. Comp. by J. H. Vaill, secretary</a>\n</td>\n\n<td>Litchfield County Choral Union</td>\n<td>b17640441</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1745876">Litchfield County sketches, by Newell Meeker Calhoun</a>\n</td>\n<td>Calhoun, Newell Meeker, 1847-1932</td>\n<td>b17458766</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092267">Long Society Preston. Re-dedication of its historic old church. Memorial address by Rev. Robert P. Stanton. An eloquent and exhaustive discourse</a>\n</td>\n<td>\n</td>\n<td>b30922677</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1714894">Lyme [Conn.] A chapter of American genealogy</a>\n\n</td>\n<td>\n</td>\n<td>b17148947</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1321380">Lyme records, 1667-1730 : a literal transcription of the minutes of the town meetings with marginal notations, to which hath been appended land grants and ear marks / compiled and edited by Jean Chandler Burr</a>\n</td>\n<td>Lyme (Conn.)</td>\n<td>b13213805</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2605807">Manual</a>\n</td>\n<td>Asylum Hill Congregational Church (Hartford, Conn.)</td>\n<td>b26058078</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3073827">Manual for the churches of the Litchfield South Consociation, 1855</a>\n</td>\n<td>Litchfield South Consociation</td>\n<td>b30738271</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2512139">Manual for the members of the Congregational Church in Deep River, Conn., 1846</a>\n</td>\n<td>First Congregational Church (Deep River, Conn.)</td>\n\n<td>b2512139x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3078823">Manual for the members of the Congregational Church in North Woodstock, Conn. : "by this shall all men know that ye are my disciples, if ye have love one to another." John 13:35</a>\n</td>\n<td>North Woodstock (Mass.). First Congregational Church</td>\n<td>b30788237</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2717882">Manual for the members of the First Congregational Church in Plymouth, Conn</a>\n</td>\n<td>First Congregational Church (Plymouth, Conn.)</td>\n<td>b27178821</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3078172">Manual of the Broadway Congregational Church of Norwich, Conn., containing a brief history of the church, its rules, articles of faith, convenant and catalogue, together with a statement of some of the leading principles of Congregationism. 1865</a>\n</td>\n\n<td>Broadway Congregational Church (Norwich, Conn.)</td>\n<td>b30781723</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1618124">Manual of the Congregational church and history of the church and parish in Hadlyme, Connecticut : with a list of the principal officers and an entire list of the members from its organization, June 26, 1745 and a list of present officers and members to December 1, 1913... / prepared by the pastor, Rev. Clarence C. Lyon</a>\n</td>\n<td>Hadlyme Congregational Church (Hadlyme, Conn.)</td>\n<td>b16181244</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3072501">Manual of the Congregational church in Bethel, Conn. : containing historical sketch, articles of faith, the covenant and rules of the church, with a catalogue of officers and members from its foundation, November 25, 1760 May 16, 1887</a>\n</td>\n<td>Congregational Church (Bethel, Conn.)</td>\n<td>b3072501x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2932708">Manual of the Congregational Church in Bolton, Conn., 1876</a>\n\n</td>\n<td>Bolton Congregational Church (Bolton, Conn.)</td>\n<td>b29327088</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3085134">Manual of the Congregational Church in Branford, Conn. J organized 1644, reorganized 1688, June, 1888</a>\n</td>\n<td>Branford (Conn.). Congregational Church</td>\n<td>b30851348</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3085135">Manual of the Congregational Church in Branford, Conn. June, 1859</a>\n</td>\n<td>Branford (Conn.). Congregational Church</td>\n<td>b3085135x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b2974810">Manual of the Congregational Church in East Haven : 1711-1892</a>\n</td>\n<td>Old Stone Church (East Haven, Conn.)</td>\n<td>b29748100</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2999525">Manual of the Congregational Church in Jewett City, Griswold, Conn</a>\n</td>\n<td>Second Congregational Church (Jewett City, Conn.)</td>\n\n<td>b29995255</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3045252">Manual of the Congregational Church in North Manchester, Conn. : containing historical statement, standing rules, form of admission, articles of faith, covenant, and catalogues of officers and members</a>\n</td>\n<td>Second Congregational Church (Manchester, Conn.)</td>\n<td>b30452521</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2571764">Manual of the Congregational Church in Old Saybrook, Conn</a>\n</td>\n<td>First Church of Christ in Saybrook (Old Saybrook, Conn.)</td>\n<td>b25717649</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2571559">Manual of the Congregational Church in South Killingly, Conn. / William H. Beard, pastor</a>\n</td>\n\n<td>Congregational Church (South Killingly, Conn.)</td>\n<td>b25715598</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2511424">Manual of the Congregational Church in Thompson Conn., 1730-1901</a>\n</td>\n<td>Congregational Church (Thompson, Conn.)</td>\n<td>b25114244</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3085133">Manual of the Congregational Church of Ansonia, Conn. : with a catalogue of members, January 1, 1877</a>\n</td>\n<td>First Congregational Church (Ansonia, Conn.)</td>\n<td>b30851336</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3077218">Manual of the Congregational Church of Eastford, Conn. organized September 23d, 1778</a>\n\n</td>\n<td>Congregational Church (Eastford, Conn.)</td>\n<td>b30772187</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2995441">Manual of the Congregational Church of Granby, Conn</a>\n</td>\n<td>Congregational Church (Granby, Conn.)</td>\n<td>b29954411</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092253">Manual of the Congregational Church of Prospect, Conn</a>\n</td>\n<td>Congregational Church (Prospect, Conn.)</td>\n<td>b30922537</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3087856">Manual of the Congregational Church of Stratford, Conn</a>\n</td>\n<td>Congregational Church (Stratford, Conn.)</td>\n<td>b30878561</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3087855">Manual of the Congregational Church of Stratford, Conn., containing an historical sketch, confession of faith, covenant, form of admission, rules, etc. Also, a catalogue of its members. 1869</a>\n</td>\n<td>Congregational Church (Stratford, Conn.)</td>\n\n<td>b3087855x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2933791">Manual of the Congregational Church, Bristol, Conn. : with sketches of its history, its pastors and deacons: - its Articles of faith, covenants, and standing rules a full list of admissions, and alphabetical catalogue of members, May 1, 1887</a>\n</td>\n<td>First Congregational Church (Bristol, Conn.)</td>\n<td>b29337914</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2933779">Manual of the Congregational Church, Bristol, Conn., with full list of admissions, and catalogue of members, January, 1875</a>\n</td>\n<td>First Congregational Church (Bristol, Conn.)</td>\n<td>b29337793</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2951031">Manual of the Congregational Church, Colebrook, Conn., May, 1879</a>\n</td>\n\n<td>Congregational Church (Colebrook, Conn.)</td>\n<td>b29510314</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2655757">Manual of the Congregational Church, Darien, Conn. 1871</a>\n</td>\n<td>First Congregational Church (Darien, Conn.)</td>\n<td>b26557575</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2445926">Manual of the Congregational Church, East Avon, Conn. May, 1869</a>\n</td>\n<td>Avon Congregational Church (Avon, Conn.)</td>\n<td>b24459264</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3029376">Manual of the Congregational Church, Higganum, Conn., January 1, 1883</a>\n\n</td>\n<td>Higganum Congregational Church (Higganum, Conn.)</td>\n<td>b30293765</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3083577">Manual of the Congregational Church, in Newington, Conn</a>\n</td>\n<td>Congregational Church (Newington, Conn.)</td>\n<td>b3083577x</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3083594">Manual of the Congregational Church: Mansfield Centre, Conn., with a historical sketch and roll of members, from its organization to the present time. (1875) revised 1910</a>\n</td>\n<td>\n</td>\n<td>b3083594x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3092144">Manual of the First Baptist Church of Stonington, Conn. containing the act of incorporation, rules of government, articles of faith, covenant, historical sketch</a>\n</td>\n<td>First Baptist Church of Stonington Borough (Stonington, Conn.)</td>\n<td>b30921442</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2563858">Manual of the First Church in Hartford</a>\n</td>\n<td>First Church of Christ (Hartford, Conn.)</td>\n\n<td>b25638580</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2589644">Manual of the First Church in New Haven</a>\n</td>\n<td>First Church in New Haven (New Haven, Conn.)</td>\n<td>b25896441</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3078156">Manual of the First Church in Norwalk, with a catalogue of surviving members, January 1, 1868</a>\n</td>\n<td>Norwalk (Conn.). First Congregational Church</td>\n<td>b30781565</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2980571">Manual of the First Church of Christ in Glastonbury, Conn. : containing historical statement, articles of faith, covenant, form for ordination of deacons, form for the baptism of infants, standing rules, and catalogues of officers and members</a>\n</td>\n\n<td>First Church of Christ in Glastonbury (Glastonbury, Conn.)</td>\n<td>b29805715</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3091852">Manual of the First Church of Christ in Middletown, Conn. : 1891</a>\n</td>\n<td>First Church of Christ (Middletown, Conn.)</td>\n<td>b30918522</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2951762">Manual of the First Church of Christ, Colchester, Connecticut, 1703-1893</a>\n</td>\n<td>First Church of Christ (Colchester, Conn.)</td>\n<td>b2951762x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2186331">Manual of the First Church of Christ, New Britain, Conn. ... 1886</a>\n\n</td>\n<td>\n</td>\n<td>b21863313</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3079274">Manual of the First Church of Christ, Pomfret, Connecticut : 1898</a>\n</td>\n<td>First Church of Christ (Pomfret, Conn.)</td>\n<td>b30792745</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3088665">Manual of the First Church of Christ, Simsbury, Conn. : containing a brief historical sketch, its articles of faith and covenant and a catalogue of its members</a>\n</td>\n<td>First Church of Christ (Simsbury, Conn.)</td>\n<td>b3088665x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b2973635">Manual of the First Congregational Church of East Hartford, Conn., 1893</a>\n</td>\n<td>First Congregational Church (East Hartford, Conn.)</td>\n<td>b29736353</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3029069">Manual of the First Congregational Church of Haddam, Connecticut</a>\n</td>\n<td>First Congregational Church (Haddam, Conn.)</td>\n\n<td>b30290697</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3078676">Manual of the First Congregational Church of Norwich, Conn., instituted in 1660: with historical notes, and a catalogue of its officers and members from December, 1699, to January, 1860</a>\n</td>\n<td>First Congregational Church (Norwich, Conn.)</td>\n<td>b30786769</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3083828">Manual of the First Congregational Church of Norwich, Conn., instituted in 1660: with historical notes, and a catalogue of its officers and members from January 1, 1868, to January 1, 1892</a>\n</td>\n<td>First Congregational Church (Norwich, Conn.)</td>\n<td>b30838289</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3079282">Manual of the First Congregational Church of Old Lyme, Conn. 1896</a>\n</td>\n\n<td>Shirley, Arthur, 1853-1925</td>\n<td>b30792824</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2978435">Manual of the First Congregational Church, Black Rock, Conn., 1876</a>\n</td>\n<td>First Congregational Church (Black Rock, Conn.)</td>\n<td>b29784359</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3000941">Manual of the First Congregational Church, Guilford, Conn., January 1, 1875</a>\n</td>\n<td>First Congregational Church (Guilford, Conn.)</td>\n<td>b30009418</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3083559">Manual of the First Congregational Church, Huntington, Conn</a>\n\n</td>\n<td>First Congregational Church (Huntington, Conn.)</td>\n<td>b30835598</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3039362">Manual of the First Congregational Church, Lebanon, Conn</a>\n</td>\n<td>First Congregational Church (Lebanon, New London County, Conn.)</td>\n<td>b30393620</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3045881">Manual of the First Congregational Church, Meriden, Conn. : adopted by the Church May 10, 1906</a>\n</td>\n<td>First Congregational Church (Meriden, Conn.)</td>\n<td>b3045881x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1717643">Manual of the First Congregational Church, New Milford</a>\n</td>\n<td>First Congregational Church (New Milford, Conn.)</td>\n<td>b17176438</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3094274">Manual of the Fourth Congregational Church, of Norwich, Conn. at Greeneville / Robert P. Stanton</a>\n</td>\n<td>Fourth Congregational Church (Norwich, Conn.)</td>\n\n<td>b30942743</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3044462">Manual of the Hadlyme Congregational Church : with a list of officers and members from its organization, June 26th, 1745 and a list of its present officers and members, March 1st, 1876</a>\n</td>\n<td>Hadlyme Congregational Church (Hadlyme, Conn.)</td>\n<td>b30444627</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092146">Manual of the North Church in New Haven : May 1742-May 1867</a>\n</td>\n<td>Church of Christ (New Haven, Conn.)</td>\n<td>b30921466</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2704534">Manual of the Park Church, Hartford, with a catalogue of surviving members. December, 1877</a>\n</td>\n\n<td>Park Congregational Church (Hartford, Conn.)</td>\n<td>b27045341</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2704535">Manual of the Park Congregational Church : cor. Asylum and High Streets, Hartford, Conn. : with a directory of present members</a>\n</td>\n<td>Park Congregational Church (Hartford, Conn.)</td>\n<td>b27045353</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3076040">Manual of the Park St. Congregational Church</a>\n</td>\n<td>Park Street Congregational Church (Bridgeport, Conn.)</td>\n<td>b30760409</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2607181">Manual of the Pearl Street Congregational Church in Hartford : with a catalogue of officers and members, January, 1870</a>\n\n</td>\n<td>Pearl Street Congregational Church (Hartford, Conn.)</td>\n<td>b26071812</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092261">Manual of the Preston City Baptist Church, Conn.</a>\n</td>\n<td>Baptist Church (Preston, Conn.)</td>\n<td>b30922616</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2704721">Manual of the Second Church in Hartford</a>\n</td>\n<td>Second Church in Hartford</td>\n<td>b27047210</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3092830">Manual of the Second Congregational Church with a catalogue of surviving members and other information . January, 1910</a>\n</td>\n<td>Second Congregational Church (New London, Conn.)</td>\n<td>b30928308</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2932994">Manual of the Second Congregational Church in Bridgeport, Conn., containing the confession of faith, covenant, names of members of the church, rules, &c</a>\n</td>\n<td>Second Congregational Church (Bridgeport, Conn.)</td>\n\n<td>b29329942</td>\n<td>CT\nRoom</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093596">Manual of the Second Congregational Church in Fair Haven, Conn. with a catalogue of the members for the year A.D. 1877</a>\n</td>\n<td>Second Congregational Church (Fair Haven, Conn.)</td>\n<td>b30935969</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2932399">Manual of the Second Congregational Church of Berlin, Conn. 1892 : history of the Church and Society, and list of members</a>\n</td>\n<td>Second Congregational Church of Berlin (Berlin, Conn.)</td>\n<td>b2932399x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2997756">Manual of the Second Congregational Church, Greenwich, Ct. January, 1870</a>\n</td>\n\n<td>Second Congregational Church (Greenwich, Conn.)</td>\n<td>b29977563</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3047312">Manual of the Second Congregational Church, Milford, Conn. : William C. Scofield, pastor</a>\n</td>\n<td>Second Congregational Church (Milford, Conn.)</td>\n<td>b30473123</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2185104">Manual of the South Congregational Church in New Britain, Conn. : January 1, 1880</a>\n</td>\n<td>South Congregational Church (New Britain, Conn.)</td>\n<td>b21851049</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2718521">Manual of the South Congregational Church, Middletown, Conn</a>\n\n</td>\n<td>South Congregational Church (Middletown, Conn.)</td>\n<td>b27185217</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3078675">Manual of the Union Baptist Church, Mystic River, Comm. : containing a historical catalogue of the members to April, 1870 am alphabetical index a history of the church, etc., and the covenant</a>\n</td>\n<td>\n</td>\n<td>b30786757</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2275778">Manual of the United Church (Congregational) in New Haven, Conn. 1886</a>\n</td>\n<td>United Church (New Haven, Conn.)</td>\n<td>b22757788</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3085132">Manual of the Windsor Avenue Congregational Church, Hartford, Conn. : containing historical notes, articles of faith, practical rules for the Christian life ... and a catalogue of members to September 20, 1877</a>\n</td>\n<td>Windsor Avenue Congregational Church (Hartford, Conn.)</td>\n<td>b30851324</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093257">Manual of Westfield Congregational church, formerly known as the First church of Killingly, Danielson, Connecticut. 1715-1905 ..</a>\n</td>\n<td>Westfield Congregational Church (Danielson, Conn.)</td>\n\n<td>b30932579</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1724475">Manual. 1836;'Historical notice of the First Congregational Church, in East-Hartford, Conn. with articles of faith, covenant, and a catalogue of members'</a>\n</td>\n<td>First Congregational Church (East Hartford, Conn.)</td>\n<td>b17244754</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2186328">Manual.f1901;'Manual no. 2 of the First Church of Christ, New Britain, Conn. ... 1886-1901'</a>\n</td>\n<td>First Church of Christ (New Britain, Conn.)</td>\n<td>b21863283</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092145">Manual;'A catalogue of the officers and members of the Chapel St. Congregational Church, together with the confession of faith, covenant, and standing rules'</a>\n</td>\n\n<td>Chapel Street Congregational Church (New Haven, Conn.)</td>\n<td>b30921454</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3076038">Manual;'Manual for the communicants of the First Congregational Church in Bridgeport, compiled January 1, 1832 .'</a>\n</td>\n<td>First Congregational Church (Bridgeport, Conn.)</td>\n<td>b30760380</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3079268">Manual;'Manual of the Broadway Congregational Church, in Norwich, Conn., containing the history of the church, its rules, articles of faith, form of admission, covenant, and catalogues of officers and members. June, 1873 ..'</a>\n</td>\n<td>Broadway Congregational Church (Norwich, Conn.)</td>\n<td>b3079268x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2571563">Manual;'Manual of the Congregational Church in Harwinton, Conn., with a catalogue of surviving members. January 1, 1868'</a>\n\n</td>\n<td>Harwinton Congregational Church (Harwinton, Conn.)</td>\n<td>b2571563x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3079265">Manual;'Manual of the Congregational Church in Plantsville, Conn., 1865-1891'</a>\n</td>\n<td>Plantsville Congregational Church (Plantsville, Conn.)</td>\n<td>b30792654</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092251">Manual;'Manual of the Congregational Church, of Plymouth, Conn. / published by vote of the church, in the year of our Lord, 1887'</a>\n</td>\n<td>First Congregational Church (Plymouth, Conn.)</td>\n<td>b30922513</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3092228">Manual;'Manual of the First Congregational Church of South Windsor, Conn. : with the by-laws, a confession of faith, and covenant, and a list of members'</a>\n</td>\n<td>First Congregational Church (South Windsor, Conn.)</td>\n<td>b30922288</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092149">Manual;'Manual of the Howard Avenue Congregational Church, New Haven, 1873 including the confession of faith, covenant, and standing rules with a catalogue of its members'</a>\n</td>\n<td>Howard Avenue Congregational Church (New Haven, Conn.)</td>\n\n<td>b30921491</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2589549">Manual;'Manual of the Westville Congregational Church, New Haven, Conn., 1891'</a>\n</td>\n<td>Westville Congregational Church (New Haven, Conn.)</td>\n<td>b25895497</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3073130">Marriages and deaths from miscellaneous newspapers published in Connecticut from 1764-1820 / [copied by Edna Huntington]</a>\n</td>\n<td>\n</td>\n<td>b30731306</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2168547">Material for the study of the Maryland manors / compiled by Montgomery Schuyler</a>\n</td>\n\n<td>Schuyler, Montgomery, 1877-1955</td>\n<td>b21685472</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1792503">Memoirs of Francis Atwater, half century of recollections of an unusually active life. Considerable space devoted to the progress of the city of Meriden and its people. Enterprises organized in many places, covering varied lines of business</a>\n</td>\n<td>Atwater, Francis, b. 1858</td>\n<td>b17925034</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3077173">Memoranda of all the inscriptions in the old burying ground at Colchester, Conn. with some notes from the town records / by Frank E. Randall</a>\n</td>\n<td>Randall, Frank E</td>\n<td>b30771730</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2950498">Memorial day exercises Collinsville, Conn., May 30, 1903</a>\n\n</td>\n<td>Collinsville (Conn.)</td>\n<td>b29504983</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2700613">Memorial manual of the Fourth Congregational Church, Hartford, Conn. : published to commemorate its fiftieth anniversary and for the use of its members : 1832 - January 10-1882</a>\n</td>\n<td>Fourth Congregational Church (Hartford, Conn.)</td>\n<td>b2700613x</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2589560">Memorial of the half century anniversary of the organization of the First Church, Fair Haven, New Haven, Conn., Wednesday, June 23, 1880 : with the installation of Rev. Burdett Hart as pastor of the church</a>\n</td>\n<td>First Congregational Church in Fair Haven (New Haven, Conn.)</td>\n<td>b25895606</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3078167">Memorial of the services held in connection with the dedication and opening for public worship of the Park Congregational Church, Norwich, Conn. : containing also a brief summary of the history of the church</a>\n</td>\n<td>Park Congregational Church (Norwich, Conn.)</td>\n<td>b3078167x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092828">Memorial sermon : preached in the South Congregational Church, New Britain, Conn ... October 14, 1883 / by James W. Cooper</a>\n</td>\n<td>Cooper, James Wesley, 1842-1916</td>\n\n<td>b3092828x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1146640">Memorial. Genealogy, and ecclesiastical history : to which is added an appendix, with explanatory notes, and a full index / by Alfred Andrews</a>\n</td>\n<td>Andrews, Alfred, 1797-1876</td>\n<td>b11466406</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3083552">Memorials of the First Baptist Church, Hartford, Conn., with sketches of its deceased pastors, the Rev s S.S. Nelson, E. Cushman, G.F. Davis, and J.S. Eaton : Discourses delivered after the dedication of the new church edifice may, 1856, with a "Pastoral Decade," etc. / by Robert Turnbull</a>\n</td>\n<td>Turnbull, Robert, 1809-1877</td>\n<td>b30835525</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2287371">Memories of old Derby / compiled from articles written by Albert F. Sherwood</a>\n</td>\n\n<td>Sherwood, Albert F., b. 1842</td>\n<td>b22873715</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1761565">Middlesex County, Connecticut, inscriptions. Killingworth and Clinton</a>\n</td>\n<td>Griswold, Glenn E., b. 1871</td>\n<td>b17615653</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2481912">Middletown Upper Houses : a history of the North Society of Middletown, Connecticut, from 1650 to 1800, with genealogical and biographical chapters on early families and a full genealogy of the Ranney family / by Charles Collard Adams</a>\n</td>\n<td>Adams, Charles Collard, 1836-</td>\n<td>b24819128</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2572675">Milford tombstone inscriptions / transcribed by Morris W. Abbott with genealogical notes by Susan Woodruff Abbott</a>\n\n</td>\n<td>Abbott, Morris W</td>\n<td>b25726754</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1698486">Milford, Connecticut : the early development of a town as shown in its land records / [Leonard W. Labaree]</a>\n</td>\n<td>Labaree, Leonard Woods, 1897-</td>\n<td>b16984869</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2401056">More chronicles of a pioneer school, from 1792 to 1833 : being added history on the Litchfield Female Academy kept by Miss Sarah Pierce and her nephew, John Pierce Brace / compiled by Emily Noyes Vanderpoel</a>\n</td>\n<td>Vanderpoel, Emily Noyes, 1842-1939</td>\n<td>b2401056x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1698609">Music Vale seminary, 1835-1876 / [Frances Hall Johnson]</a>\n</td>\n<td>Johnson, Frances Hall, b. 1865</td>\n<td>b1698609x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3085063">Names and number of brethren of the church and heads of familes in Greenfield at the time when the parish of North Fairfield was set off. Copied by William Applebie Daniel Eardeley</a>\n</td>\n<td>Eardeley, William Applebie, 1870-1935</td>\n\n<td>b30850630</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1274323">Names of the residents of New Britain, Connecticut in the year 1799 who paid taxes, with the amount of their list</a>\n</td>\n<td>New Britain (Conn.)</td>\n<td>b12743239</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1017162">New Britain patents and patentees : with a list of New Britain patents prior to 1901, arranged alphabetically as to patentees / by James Shepard appendix, The origin of New Britain manufacturers / by F.T. Stanley</a>\n</td>\n<td>Shepard, James, 1838-1926</td>\n<td>b10171629</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2719955">New Canaan war veterans speak</a>\n</td>\n\n<td>New Canaan (Conn.). War Records Committee</td>\n<td>b27199551</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2588365">New Haven one hundred years ago / by Rev. Leonard Bacon ... a centennial address delivered in Center Church, July fourth, 1876</a>\n</td>\n<td>Bacon, Leonard, 1802-1881</td>\n<td>b25883653</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2722201">New Milford : a memorial discourse, delivered in the Congregational Church, New Milford, Conn. Sunday, July 9, 1876 / by James B. Bonar, Pastor</a>\n</td>\n<td>Bonar, James Blair</td>\n<td>b27222019</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2535316">Newgate of Connecticut : a history of the prison, its insurrections, massacres, & c., imprisonment of the Tories, in the revolution, the ancient and recent working of its mines, & c., to which is appended a description of the State Prison, at Wethersfield / by Richard H. Phelps</a>\n\n</td>\n<td>Phelps, Richard H. (Richard Harvey)</td>\n<td>b25353160</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093727">Newington Congregational Church of Newington, Connecticut Souvenir, May 19, 1905</a>\n</td>\n<td>Newington Congregational Church (Newington, Conn.)</td>\n<td>b30937279</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1225364">Newtown s bicentennial : an account of the celebration of the two hundredth anniversary of the purchase from the Indians of the land of the town of Newtown, Connecticut, held August fifth, nineteen hundred and five / edited by James Hardin George, Allison Parish Smith, Ezra Levan Johnson</a>\n</td>\n<td>George, J. H. (James Hardin)</td>\n<td>b12253649</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b2075606">Newtown s history and historian : Ezra Levan Johnson / with additional material, prepared by Jane Eliza Johnson</a>\n</td>\n<td>Johnson, Ezra Levan, 1832-1914</td>\n<td>b20756069</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2324361">Newtown: 1708-1758 : historical notes and maps / by John Neville Boyle</a>\n</td>\n<td>Boyle, John Neville</td>\n\n<td>b23243612</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2545326">Nonsense, common sense, incense</a>\n</td>\n<td>Sheldon, Franklin J., b. 1846</td>\n<td>b25453269</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2574922">Norfolk centennial. Historical discourses preached in the Congregational Church, Norfolk, Conn., July 9, 1876, in accordance with the recommendation of the state conference. I. The pastors and the spiritual progress of the church / by Rev. Wm. E. Bassett. II. The revolutionary period and the external life of the church, by Rev. J. Wickliffe Beach. With an appendix. Published by request</a>\n</td>\n<td>\n</td>\n<td>b25749225</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1763229">Norwalk [v. 1 and supplement] By the Rev. Charles M. Selleck, A.M</a>\n</td>\n\n<td>Selleck, Charles Melbourne, d. 1909</td>\n<td>b17632298</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2575014">Norwalk after two hundred & fifty years : an account of the celebration of the 250th anniversary of the charter of the town, 1651-September 11th-1901 : including historical sketches of churches, schools, old homes, institutions, eminent men, patriotic and benevolent work, together with the record of soldiers and sailors enlisted in Norwalk from 1676 to 1898, the civic progress in the last century and statistics of commerce and other miscellany of local interest / pub. under the auspices of the Norwalk Historical and Memorial Library Assoc</a>\n</td>\n<td>Norwalk Historical and Memorial Library Association</td>\n<td>b25750148</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2708872">Norwich : early homes and history / a paper written and delivered by Sarah Lester Tyler, at the meeting of Faith Trumbull Chapter, D.A.R., held December 7, 1905</a>\n</td>\n<td>Tyler, Sarah Lester</td>\n<td>b27088728</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3078170">Norwich free academy : an address at the dedication of the Free academy in Norwich, Conn. together with the remarks of gentlemen present by invitation / by John P. Gulliver</a>\n</td>\n<td>Gulliver, John Putnam, 1819-1894</td>\n<td>b3078170x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3078832">Norwich, "the rose of New England" : and its environments, civic, industrial and agricultural / compiled by the Norwich Business Men s Association</a>\n</td>\n<td>\n</td>\n\n<td>b30788328</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3076181">Official programme and historical review, July 3rd and 4th, 1888</a>\n</td>\n<td>Bridgeport (Conn.)</td>\n<td>b30761815</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3083764">Official souvenir program of the 275th anniversary of the town of Stamford, Connecticut, Thursday, Friday, Saturday, Sunday June eight, nine, ten, eleven nineteen hundred and sixteen</a>\n</td>\n<td>Stamford (Conn. : Town)</td>\n<td>b30837649</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3084885">Old Canaan during the revolution / by Lillian Clayton Smith. Grandmother s grandmother / by Louise Helen Coburn</a>\n</td>\n\n<td>Smith, Lillian Clayton</td>\n<td>b30848854</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2711506">Old families of Norwich, Connecticut, MDCLX to MDCCC / comp. by Mary E. Perkins. Genealogies. vol. 1, pt. 1</a>\n</td>\n<td>Perkins, Mary E. (Mary Elizabeth)</td>\n<td>b27115069</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2550836">Old Hartford Burying Ground / by George Leon Walker</a>\n</td>\n<td>Walker, George Leon, 1830-1900</td>\n<td>b25508362</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1751383">Old homes in Stonington : with additional chapters and graveyard inscriptions / by Grace Denison Wheeler</a>\n\n</td>\n<td>Wheeler, Grace Denison, 1858-1906</td>\n<td>b17513832</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2711489">Old houses in and near Litchfield, Conn. : open for the benefit of the Connecticut Junior Republic / sponsored by the Litchfield Aid of the Connecticut Junior Republic Association, Inc</a>\n</td>\n<td>\n</td>\n<td>b27114892</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2584870">Old houses in Farmington : an historical address delivered at the annual meeting of the Village Library Company of Farmington, Conn., May 1, 1895</a>\n</td>\n<td>Gay, Julius, 1834-1918</td>\n<td>b25848707</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1411839">Old houses of the antient town of Norwich, 1660-1800 : with maps, illustrations, portraits and genealogies / by Mary E. Perkins</a>\n</td>\n<td>Perkins, Mary E. (Mary Elizabeth)</td>\n<td>b14118397</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1140228">Old paths and legends of the New England border Connecticut, Deerfield, Berkshire, by Katharine M. Abbott</a>\n</td>\n<td>Abbott, Katharine M. (Katharine Mixer), b. 1865</td>\n\n<td>b11402283</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2584828">One hundred and fiftieth anniversary, First Church of Christ, New Britain, Connecticut : 1758-1908 / compiled by Deacon Charles Elliott Mitchell</a>\n</td>\n<td>\n</td>\n<td>b25848288</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2719714">One hundred years of the Hartford Bank, now the Hartford National Bank of Hartford, Conn., 1792-1892 / prepared at the request of the president and directors by P.H. Woodward</a>\n</td>\n<td>Woodward, P. H. (Patrick Henry), 1833-1917</td>\n<td>b27197141</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1249461">Other days in Greenwich : or, Tales and reminiscences of an old New England town / by Frederick A. Hubbard</a>\n</td>\n\n<td>Hubbard, Frederick A</td>\n<td>b12494616</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3073820">Our first year of army life: an anniversary address, delivered to the First Regiment of Connecticut Volunteer Heavy Artillery, at their camp near Gaines Mills, Va., June, 1862 / by the chaplain of the regiment</a>\n</td>\n<td>Walker, Edward Ashley, 1834-1866</td>\n<td>b30738209</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2584819">Our town : sermons from the history of Clinton</a>\n</td>\n<td>Elliott, Robert H</td>\n<td>b25848197</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093644">Papers connected with the centennial of the Congregational Church in Middlebury, Connecticut : observed May 27, 1896.</a>\n\n</td>\n<td>Middlebury Congregational Church (Middlebury, Conn.)</td>\n<td>b30936445</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3084147">Parish directory of the Park Congregational Church,Officers, and Members of Sunday School. February 1, 1897</a>\n</td>\n<td>Park Congregational Church (Norwich, Conn.)</td>\n<td>b30841471</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3083587">Personal accountability : a sermon preached to the First Church and Society in Madison, Conn., the first Sabbath of the year 1857 / by Milton Badger</a>\n</td>\n<td>Badger, Milton, 1800-1873</td>\n<td>b30835872</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3094034">Phelps Homestead Simsbury, Connecticut : 1772 to 1962</a>\n</td>\n<td>Bannister, William K.</td>\n<td>b30940345</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1059087">Picturesque sketch of New London s people : stories gathered from the local tombstones / [by Augustus Brandegee]</a>\n</td>\n<td>Brandegee, Augustus, b. 1828</td>\n\n<td>b10590870</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2576835">Plainfield bicentennial : a souvenir volume comprising the speeches, historical papers, poems, and general exercises at the observance of the two hundredth anniversary of the organization of the town of Plainfield, Conn., Aug. 31st, 1899</a>\n</td>\n<td>\n</td>\n<td>b25768359</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2571669">Present Mansfield ("Centre") : a passing sketch of the village, with occasional jottings of its former history, present aspect, and prospective greatness, from 1685 to 1879 / by A Way Side Traveler</a>\n</td>\n<td>Cummings, Thomas Seir, 1804-1894</td>\n<td>b25716694</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3088104">Preston Conn. Town Records, copied by Mrs. Florence E. Youngs</a>\n</td>\n\n<td>Youngs, Florence E. (Florence Evelyn), b. 1868</td>\n<td>b30881043</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1146656">Preston, 1801, & Lisbon (Hanover), 1800, & Lisbon (Newent), 1801</a>\n</td>\n<td>\n\n</td>\n<td>b1146656x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1691930">Proceedings at the celebration of the 250th anniversary of the settlement of Guilford, Conn. : September 8th, 9th, and 10th, 1889</a>\n</td>\n<td>Guilford (Conn.)</td>\n<td>b16919300</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1113187">Proceedings at the celebration of the two hundred and fiftieth anniversary of the First Church of Christ, in Milford, Ct., August 25th, 1889</a>\n</td>\n<td>First Church of Christ (Milford, Conn.)</td>\n<td>b11131871</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2589172">Proceedings at the centennial celebration of the First Company, Governor s Foot Guard, Hartford, October 19, 1871, with an historical introduction</a>\n\n</td>\n<td>\n</td>\n<td>b25891728</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1129728">Proceedings at the dedication of Charter Oak Hall upon the South Meadow grounds of Col. Samuel Colt : with the addresses on the occasion by Messrs. Hamersley, Stuart, and Deming / edited by J. Deane Alden</a>\n</td>\n<td>\n</td>\n<td>b11297281</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2261652">Proceedings at the opening of the Phoebe Griffin Noyes Library</a>\n</td>\n<td>Phoebe Griffin Noyes Library</td>\n<td>b22616524</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b2703919">Proceedings at the two hundredth anniversary of the Second Church of Christ in Hartford : February 22d and 23d, 1870</a>\n</td>\n<td>\n</td>\n<td>b27039195</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3002227">Proceedings of the celebration of the two hundred and fiftieth anniversary of the First Congregational Church of Guilford, Conn., June 25th, 1893</a>\n</td>\n<td>First Congregational Church (Guilford, Conn.)</td>\n\n<td>b30022277</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3073829">Proceedings of the North and South Consociations of Litchfield County, Ct. : in convention at Litchfield, July 7 and 8, 1852, to commemorate the centennial anniversary of their primitive organization</a>\n</td>\n<td>\n</td>\n<td>b30738295</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2588589">Program of exercises at the dedication of a soldiers monument erected by the First Connecticut Light Battery, the Sixth, Seventh and Tenth Connecticut Volunteers Monument Association at the Broadway Park, New Haven, June 16, 1905, upon the forty-first anniversary of the Battle of Burmuda Hundred and Petersburg Turnpike, Virginia</a>\n</td>\n<td>First Connecticut Light Battery and the Sixth, Seventh and Tenth Connecticut Volunteers Monument Association</td>\n<td>b25885893</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2973139">Programme : bi-centennial : Town of Durham, Connecticut, 1699-1899</a>\n</td>\n\n<td>\n</td>\n<td>b29731392</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1058672">Programme and addresses delivered at the one hundred and fiftieth anniversary of the First Congregational Church, Bristol, Conn., October 12th, 1897 / T.M. Miles ... et al</a>\n</td>\n<td>\n</td>\n<td>b10586726</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2573703">Readings in New Canaan history</a>\n</td>\n<td>New Canaan Historical Society</td>\n<td>b2573703x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1092261">Recollections of a New England town / by "Faith" (Mrs. Frances A. Breckenridge)</a>\n\n</td>\n<td>Breckenridge, Frances A</td>\n<td>b10922611</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1794360">Record of service of Connecticut men in the I. War of the Revolution, II. War of 1812, III. Mexican War / compiled by authority of the General Assembly</a>\n</td>\n<td>Connecticut. Adjutant-General s Office</td>\n<td>b17943607</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3077177">Records of Fairfield, Connecticut / presented by Ellen Hardin Walworth Chapter of Daughters of American Revolution of New York City copied by Mrs. Harvey Tyson White, Regent</a>\n</td>\n<td>\n</td>\n<td>b30771778</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1130477">Records of Rev. Ransom Warner, 1823-1854 : rector of St. Andrew s, Simsbury and Bloomfield, St. Peter s, Granby, St. John s, East Windsor, Connecticut also additional records, 1777-1778, of Rev. Roger Viets, rector of St. Andrews, Simsbury / by Albert C. Bates</a>\n</td>\n<td>Warner, Ransom, 1796-1856</td>\n<td>b11304777</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2444449">Records of Rev. Roger Viets : rector of St. Andrew s, Simsbury, Conn., and missionary from the Society for the Propagation of the Gospel in Foreign Parts, 1763-1800 / by Albert C. Bates</a>\n</td>\n<td>Viets, Roger, 1738-1811</td>\n\n<td>b24444492</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2482332">Records of the Ashford Congregational Church, Connecticut. Part I / transcribed and verified by Mary Kinsbury Talcott</a>\n</td>\n<td>Congregational Church (Ashford, Conn.)</td>\n<td>b24823326</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1743259">Records of the colony and plantation of New Haven, from 1638 to 1649 : transcribed and edited in accordance with a resolution of the General Assembly of Connecticut with occasional notes and an appendix / By Charles J. Hoadly</a>\n</td>\n<td>New-Haven Colony</td>\n<td>b17432595</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1779348">Records of the colony or jurisdiction of New Haven, from May, 1653, to the union : together with the New Haven code of 1656 transcribed and edited in accordance with a resolution of the General Assembly of Connecticut / By Charles J. Hoadly</a>\n</td>\n\n<td>New Haven (Conn.)</td>\n<td>b17793488</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1484491">Records of the Congregational church in Canterbury, Connecticut, 1711-1844, published jointly by the Connecticut historical society and the Society of Mayflower descendants in the state of Connecticut</a>\n</td>\n<td>First Congregational Church (Canterbury, Conn.)</td>\n<td>b14844916</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1484489">Records of the Congregational church in Suffield, Conn. (except church votes) 1710-1836</a>\n</td>\n<td>First Congregational Church (Suffield, Conn.)</td>\n<td>b14844898</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1711884">Records of the Congregational Church in Turkey Hills, now the town of East Granby, Connecticut, 1776-1858 pub. by Albert Carlos Bates</a>\n\n</td>\n<td>Congregational Church (East Granby, Conn.)</td>\n<td>b17118840</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2559633">Records of the Congregational Church, Franklin, Connecticut, 1718-1860 : and a record of deaths in Norwich Eighth Society, 1763, 1778, 1782, 1784-1802 / published jointly by the Society of Mayflower Descendants in the state of Connecticut, and the Society of the Founders of Norwich, Connectitcut</a>\n</td>\n<td>Congregational Church (Franklin, Conn.)</td>\n<td>b25596330</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1738392">Records of the Connecticut State Society of the Cincinnati, 1783-1804</a>\n</td>\n<td>Connecticut Society of the Cincinnati</td>\n<td>b17383924</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3092054">Records of the First Church of Christ, Groton, Connecticut</a>\n</td>\n<td>Barber, Gertrude A. (Gertrude Audrey)</td>\n<td>b30920541</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1009359">Records of the Second School Society in Granby, now the town of East Granby, Connecticut, 1796-1855</a>\n</td>\n<td>Second School Society (Granby, Conn.)</td>\n\n<td>b1009359x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2287372">Records of the society or parish of Turkey Hills, now the town of East Granby, Connecticut, 1737-1791</a>\n</td>\n<td>Turkey Hills Society (East Granby, Conn.)</td>\n<td>b22873727</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3078824">Re-dedication. A discourse preached at the re-opening of the Congregational Church, in Sharon, Connecticut, March 2d, 1864. Published by request</a>\n</td>\n<td>McLaughlin, D. D. Tompkins (Daniel Decius Tompkins), 1812-1895</td>\n<td>b30788249</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1757039">Reference list on Connecticut local history / compiled by Charles A. Flagg</a>\n</td>\n\n<td>Flagg, Charles Allcott, 1870-1920</td>\n<td>b17570396</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3085141">Reply to Mr. Abbot\ns Statement of proceedings in the First Society in Coventry, Connecticut, by the Association in Tolland County</a>\n</td>\n<td>Association in Tolland County</td>\n<td>b30851415</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1774839">Report of Connecticut towns</a>\n</td>\n<td>Acorn Club of Connecticut</td>\n<td>b17748392</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1091558">Report of the celebration of the centennial of the incorporation of the town of Marlborough : August 23d and 25th, 1903 / compiled and published by Mary Hall</a>\n\n</td>\n<td>Hall, Mary</td>\n<td>b10915588</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1058630">Report of the Committee Appointed to Inquire into the Condition of the New Haven Burying Ground : and to propose a plan for its improvement</a>\n</td>\n<td>New Haven (Conn.). Committee Appointed to Inquire into the Condition of the New Haven Burying Ground</td>\n<td>b10586301</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2563677">Report of the Examiner of Public Records</a>\n</td>\n<td>Connecticut. Examiner of Public Records</td>\n<td>b25636777</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3093260">Report of the officers to the Society of Middletown Upper Houses : with a list of life and charter members, Cromwell, Conn., May, 1906</a>\n</td>\n<td>Society of Middletown Upper Houses (Cromwell, Conn.)</td>\n<td>b30932609</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2362587">Report of the Secretary of State and State Librarian to the General Assembly on ancient court records</a>\n</td>\n<td>Connecticut. Secretary of the State</td>\n\n<td>b23625879</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2563660">Report of the Temporary Examiner of Public Records</a>\n</td>\n<td>Connecticut. Temporary Examiner of Public Records</td>\n<td>b25636601</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3073127">Reports of the Fairfield County Historical Society, Bridgeport, Conn</a>\n</td>\n<td>Fairfield Historical Society (Fairfield, Conn.)</td>\n<td>b30731276</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092255">Resident and business directory of Putnam, Conn. : containing an historical sketch of the town, a list of the streets, town officers, schools, teachers, churches, societies, a complete resident and business directory, biographical sketches of prominent citizens, and other information of local interest / compiled ... by E.P. Gleason</a>\n</td>\n\n<td>Gleason, E. P</td>\n<td>b30922550</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2550835">Restoration of the Ancient Burying-Ground of Hartford : and the widening of Gold Street with lists of contributors to the general fund and of descendants who contributed for the preservation of family monuments / by the Ruth Wyllys Chapter, Daughters of the American Revolution</a>\n</td>\n<td>Daughters of the American Revolution. Ruth Wyllys Chapter (Hartford, Conn.)</td>\n<td>b25508350</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1743332">Rev. Dudley Woodbridge : his church record at Simsbury in Conn., 1697-1710 / published with prefatory notes by Albert C. Bates</a>\n</td>\n<td>First Church (Simsbury, Conn.)</td>\n<td>b17433320</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3085137">Ride down memory lane : on the Branford Electric Railway in the suburbs of New Haven, Conn. : the story of the Branford Electric Railway Association, Inc. / [John Stern, editor]</a>\n\n</td>\n<td>\n</td>\n<td>b30851373</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3085136">Ride down memory lane on the Branford Electric Railway in the suburbs of New Haven, Conn. : the story of the Branford Electric Railway Association, Inc</a>\n</td>\n<td>\n</td>\n<td>b30851361</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093633">Ridgefield Connecticut a charming old New England Town 1708-1935</a>\n</td>\n<td>\n</td>\n<td>b30936330</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1774377">Ridgefield in 1800 / by Rev d. Samuel Goodrich</a>\n</td>\n<td>Goodrich, Samuel, 1763-1835</td>\n<td>b17743771</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1768010">Roll of state officers and members of General Assembly of Connecticut, from 1776 to 1881 : with an appendix giving the congressional delegates, judges of the Supreme and Superior Courts, and the date of incorporation of the cities, boroughs, and towns</a>\n</td>\n<td>Connecticut. General Assembly</td>\n\n<td>b17680104</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093731">Rules of the Association and Consociation of Middlesex County, Conn. : with a preface and appendix</a>\n</td>\n<td>Congregational Churches in Connecticut. Middlesex Consociaton</td>\n<td>b30937310</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1771404">Rural life in Litchfield County, by Charles Shepherd Phelps</a>\n</td>\n<td>Phelps, Charles Shepherd</td>\n<td>b17714047</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1036322">Saybrook s quadrimillenial : commemoration of the 250th anniversary of the settlement of Saybrook, November 27, 1885</a>\n</td>\n\n<td>\n</td>\n<td>b10363221</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2705518">Schools and schoolmasters in Farmington in the olden time</a>\n</td>\n<td>Gay, Julius, 1834-1918</td>\n<td>b27055188</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1801552">Second Company, Governor s Foot Guards : souvenir history, 150th anniversary, 1775-1925</a>\n</td>\n<td>Connecticut. Governor s Foot Guard. Company, 2nd (New Haven)</td>\n<td>b18015529</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2715317">Semi-centennial : a sermon, preached August 14, 1861 by Timothy Tuttle, Pastor of the Congregational Church, Ledyard, Conn., it being the fiftieth anniversary of his ordination</a>\n\n</td>\n<td>Tuttle, Timothy, 1781-1864</td>\n<td>b27153174</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2973709">Semi-centennial anniversary of the Congregational Sabbath School in East Hartford, Conn., September 1, 1869</a>\n</td>\n<td>First Congregational Church (East Hartford, Conn.)</td>\n<td>b29737096</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3092264">Semi-centennial historical discourse delivered in the meeting house of the Preston Baptist Church : Preston, Connecticut, October 10, 1865 / by Miles Gilbert Smith</a>\n</td>\n<td>Smith, Miles Gilbert</td>\n<td>b30922641</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3073828">Semi-centennial of the Litchfield Co. Foreign Mission Society, celebrated at Litchfield, October 16, 1861</a>\n</td>\n<td>Foreign Mission Society for the County of Litchfield</td>\n<td>b30738283</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1705960">Sermon preached the last Sabbath of 1843 : at Stafford, Conn., Dec. 31st / by George H. Woodward</a>\n</td>\n<td>Woodward, George H</td>\n\n<td>b17059604</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1723811">Services held by the First Church of Killingly, Sept. 22-26, 1901 in the 186th year of its history being the centennial celebration of its re-organization as the church in the West Parish (or the West Field) and later known as the Westfield Congregational Church of Danielson, Connecticut. 1715-1901</a>\n</td>\n<td>\n</td>\n<td>b17238110</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2511431">Services in commemoration of the one hundred and seventy-fifth anniversary, Congregational Church, Thompson, Conn., Sunday, February 12, 1905</a>\n</td>\n<td>\n</td>\n<td>b25114311</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2998916">Services of rededication, Second Congregational Church, Greenwich, Connecticut / Rev. Joseph Henry Selden, pastor</a>\n</td>\n\n<td>\n</td>\n<td>b29989164</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2399764">Sesquicentennial of the Battle of Groton Heights and the Burning of New London, Connecticut, September 6 and 7, 1931 / compiled and edited by Ernest E. Rogers</a>\n</td>\n<td>Connecticut. Fort Griswold & Groton Monument Commission</td>\n<td>b23997643</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1777520">Seymour, past and present, by Rev. Hollis A. Campbell, William C. Sharpe and Frank G. Bassett</a>\n</td>\n<td>Campbell, Hollis A. (Hollis Andrew)</td>\n<td>b17775206</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b3091841">Simsbury s part in the war of the American revolution, by the Rev. Chas. E. Stowe</a>\n</td>\n<td>Stowe, Charles Edward, b. 1850</td>\n<td>b30918418</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1120503">Simsbury, Connecticut, births, marriages and deaths / transcribed from the town records, and published by Albert C. Bates</a>\n</td>\n<td>Simsbury (Conn.)</td>\n\n<td>b11205039</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1083102">Sixty years recollections of Milford : and its chronology from 1637 up to and including 1916 / by Nathan Stowe the whole ed. and rev. by Newton Harrison</a>\n</td>\n<td>Stowe, Nathan</td>\n<td>b10831022</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1150776">Sketch of Connecticut, forty years since</a>\n</td>\n<td>Sigourney, L. H. (Lydia Howard), 1791-1865</td>\n<td>b11507767</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1145136">Sketches and chronicles of the town of Litchfield, Connecticut : historical, biographical, and statistical : together with a complete official register of the town / by Payne Kenyon Kilbourne</a>\n</td>\n\n<td>Kilbourne, Payne Kenyon, 1815-1859</td>\n<td>b11451361</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1366132">Sketches of church life in colonial Connecticut being the story of the transplanting of the Church of England into forty two parishes of Connecticut, with the assistance of the Society for the propagation of the gospel written by members of the parishes in celebration of the 200th anniversary of the society edited by Lucy Cushing Jarvis</a>\n</td>\n<td>Jarvis, Lucy Cushing, b. 1864</td>\n<td>b13661322</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093734">Sketches of history of the Congregational Church and Society in Ledyard : delivered Aug. 14th, 1859, being the 48th anniversary of the present pastorate / by Thimothy [sic] Tuttle</a>\n</td>\n<td>Tuttle, Timothy, 1781-1864</td>\n<td>b30937346</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2551677">Sketches of physicians in Hartford in 1820 : and reminiscences / by George Sumner and in 1837 by Gurdon W. Russell</a>\n\n</td>\n<td>Sumner, George, 1793-1855</td>\n<td>b25516772</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2348046">Sketches of the early lights of the Litchfield bar / by David S. Boardman</a>\n</td>\n<td>Boardman, David Sherman, 1768-1864</td>\n<td>b23480464</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2979206">Sketches of the early settlements of the Plymouth colony : historical, biographical and anecdotical / by Egbert Cowles</a>\n</td>\n<td>Cowles, Egbert</td>\n<td>b2979206x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b2683298">Sketches of the people and places of New Hartford in the past and present : section 1-2</a>\n</td>\n<td>Jones, Henry Roger</td>\n<td>b26832987</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1724682">Some extracts from the records of the First Church of Christ in East Windsor, Conn. Taken in June, 1833. With occasional remarks a list of members confession of faith and covenant</a>\n</td>\n<td>First Congregational Church (East Windsor, Conn.)</td>\n\n<td>b17246829</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2415672">Some historic sites of Litchfield, Connecticut</a>\n</td>\n<td>\n</td>\n<td>b24156723</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2578837">South Britain sketches and records</a>\n</td>\n<td>Sharpe, W. C. (William Carvosso), 1839-1924</td>\n<td>b25788371</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3073302">Souvenir of the Centennial exhibition: or, Connecticut s representation at Philadelphia, 1876. Embracing a condensed history of the origin and progress of the great international exhibition ... Also, a list of over forty thousand Connecticut visitors</a>\n</td>\n\n<td>Curtis, George D</td>\n<td>b30733029</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1087578">Speech for Connecticut. Being an historical estimate of the state, delivered before the Legislature and other invited guests, at the festival of the Normal School in New Britain, June 4, 1851. By Horace Bushnell</a>\n</td>\n<td>Bushnell, Horace, 1802-1876</td>\n<td>b10875785</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3077249">St. John s Parish, Stamford, Connecticut</a>\n</td>\n<td>St. John s Episcopal Church (Stamford, Conn.)</td>\n<td>b30772497</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2578839">Stafford illustrated : a descriptive and historical sketch of Stafford, Connecticut : especially devoted to the Stafford of to-day, and illustrative of its natural advantages and growth in prosperity, its citizens and their homes, its public institutions, its industrial and commercial enterprises, its health-giving springs, and its wealth of scenic attractions, including the picturesque lakes in its vicinity / compiled and edited by William Young</a>\n\n</td>\n<td>Young, William</td>\n<td>b25788395</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1741165">Stamford directory</a>\n</td>\n<td>\n</td>\n<td>b17411658</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2578899">Stamford historical sketches / by Alfred Grant Walton</a>\n</td>\n<td>Walton, Alfred Grant</td>\n<td>b25788991</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1761765">Stamford registration of births, marriages, and deaths : including every name, relationship, and date now found in the Stamford registers, from the first record down to the year 1825 / by Rev. E.B. Huntington</a>\n</td>\n<td>Huntington, E. B. (Elijah Baldwin), 1816-1877</td>\n<td>b17617650</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2163505">Stamford Revolutionary War damage claims</a>\n</td>\n<td>Marcus, Ronald</td>\n\n<td>b21635055</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2578881">Stamford soldiers memorial / by Rev. E. B. Huntington</a>\n</td>\n<td>Huntington, E. B. (Elijah Baldwin), 1816-1877</td>\n<td>b25788814</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2639255">Stamford, Connecticut 1872 city directory / [edited by] Thomas Jay Kemp</a>\n</td>\n<td>Ridley, Joseph</td>\n<td>b26392550</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3076885">Stamford, Fairfield County, Conn. : records of the Congregational Church baptisms 1747 per 1766</a>\n</td>\n\n<td>Eardeley, William Applebie, 1870-1935</td>\n<td>b30768858</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093230">Statistics of the Connecticut election sermons, 1674 to 1830 : from the manuscripts of the Hon. Ralph D. Smyth, of Guilford, Conn. / edited by Bernard C. Steiner</a>\n</td>\n<td>Smyth, Ralph Dunning, 1804-1874</td>\n<td>b30932300</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1251345">Stonington chronology, 1649-1949 : being a year-by-year record of the American way of life in a Connecticut town</a>\n</td>\n<td>Haynes, Williams, 1886-1960</td>\n<td>b12513453</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1774376">Stratfield in 1800 / by Philo Shelton</a>\n\n</td>\n<td>Shelton, Philo, 1754-1825</td>\n<td>b1774376x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1484448">Sundry vital records of, and pertaining to the present town of East Granby, Connecticut, 1737-1886 / published by Albert Carlos Bates</a>\n</td>\n<td>East Granby (Conn.)</td>\n<td>b14844485</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093736">The 125th anniversary of the Congregational Church of Hanover, Conn. : the historical address by the pastor and a report of the exercises, May 13, 1891</a>\n</td>\n<td>Congregational Church of Hanover (Hanover, Conn.)</td>\n<td>b3093736x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n\n<a href="http://www.consuls.org/record=b1086336">The 150th anniversary of the organization of the First Church of Christ in Pomfret, Conn., October 26, 1865 : sermons, historical papers, addresses, with appendix</a>\n</td>\n<td>\n</td>\n<td>b10863369</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2277414">The alarm : a narrative of the British invasion of Connecticut, 1777 / by Emma W. Law Demeritt drawings and fotos by W. F. Weed</a>\n</td>\n<td>Demeritt, Emma W. Law</td>\n\n<td>b22774142</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3077209">The articles of faith and covenant of the Clinton Congregational Church, Clinton, Conn. With a list of the members</a>\n</td>\n<td>Congregational Church (Clinton, Conn.)</td>\n<td>b30772096</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3083752">The Asylum Hill Congregational Church Hartford, Connecticut manual: corrected to June 15, 1915/ compiled by Charles G. Case, church clerk .</a>\n</td>\n<td>\n</td>\n<td>b30837522</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3076175">The battle of Groton Heights : a story of the storming of Fort Griswold, and the burning of New London, on the sixth of September, 1781 / By Rev. N. H. Burnham. Containing also the narrative of Rufus Avery, (from the original manuscript) and statement of Avery Downer, M.D. Together with biographical sketches of Col. William Ledyard and Mother Bailey, including a poem by Leonard Woolsey Bacon, delivered on the centennial anniversary of the battle of Groton heights, September 6, 1881</a>\n</td>\n\n<td>Burnham, Norman Hammond, b. 1848</td>\n<td>b3076175x</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2201400">The beginnings of the Episcopal Church in New Haven : a discourse delivered in Trinity Church, New Haven, December 30, 1894 / by Edwin Harwood</a>\n</td>\n<td>Harwood, Edwin, 1822-1902</td>\n<td>b22014007</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1775016">The bench and bar of Litchfield County, Connecticut, 1709-1909 : biographical sketches of members, history and catalogue of the Litchfield Law School, historical notes / by Dwight C. Kilbourn</a>\n</td>\n<td>Kilbourn, Dwight C. (Dwight Canfield), 1837-1914</td>\n<td>b17750167</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1139336">The Bi-centennial celebration of the First Congregational Church and Society of Bridgeport, Connecticut : June 12th and 13th, 1895</a>\n\n</td>\n<td>\n</td>\n<td>b11393361</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1076649">The bi-centennial celebration of the settlement of Litchfield, Connecticut, August 1-4, 1920 / compiled for the Litchfield Historical Society by Alain C. White</a>\n</td>\n<td>White, Alain Campbell, 1880-1951</td>\n<td>b10766492</td>\n\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1259131">The Blue laws of New Haven colony, usually called Blue laws of Connecticut Quaker laws of Plymouth and Massachusetts Blue laws of New York, Maryland, Virginia, and South Carolina. First record of Connecticut interesting extracts from Connecticut records cases of Salem witchcraft charges and banishment of Rev. Roger Williams, &c. and other interesting and instructive antiquities. Compiled by an Antiquarian</a>\n</td>\n<td>Hinman, R. R. (Royal Ralph), 1785-1868</td>\n<td>b12591312</td>\n<td>CT Room</td>\n</tr>\n<tr>\n\n<td>\n<a href="http://www.consuls.org/record=b1126504">The British invasion of New Haven, Connecticut : together with some account of their landing and burning the towns of Fairfield and Norwalk, July, 1779 / by Charles Hervey Townshend</a>\n</td>\n<td>Townshend, Charles Hervey, 1833-1904</td>\n<td>b11265048</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2571948">The burning of Simsbury : a bi-centennial address, in commemoration of that event, delivered in the Congregational Church in Simsbury, Conn. on Sabbath evening, March 26, 1876 / by Lucius I. Barber</a>\n</td>\n<td>Barber, Lucius I. (Lucius Israel), 1806-1889</td>\n\n<td>b25719488</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1784070">The Celebration of the one hundred and fiftieth anniversary of the primitive organization of the Congregational Church and Society : in Franklin, Connecticut, October 14th, 1868</a>\n</td>\n<td>\n</td>\n<td>b17840703</td>\n<td>CT Room</td>\n</tr>\n\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b2177839">The celebration of the two hundred and fiftieth anniversary of the settlement of the town of Norwich, Connecticut : and of the incorporation of the city, the one hundred and twenty-fifth, July 4, 5, 6, 1909 / by William C. Gilman</a>\n</td>\n<td>Gilman, William C. (William Charles), 1833-1922</td>\n<td>b21778395</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3094043">The charter oak and descendants Hartford, Conn. by Dr. Gurdon W. Russell clippings from the Connecticut Courant Oct. 31, 1907</a>\n</td>\n\n<td>Russell, Gurdon Wadsworth, 1815-1909</td>\n<td>b30940436</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1746550">The charter of Connecticut a study, by Albert Carlos Bates</a>\n</td>\n<td>Bates, Albert Carlos, b. 1865</td>\n<td>b17465503</td>\n<td>CT Room</td>\n\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b3093229">The Christian league of Connecticut</a>\n</td>\n<td>Gladden, Washington, 1836-1918</td>\n<td>b30932294</td>\n<td>CT Room</td>\n</tr>\n<tr>\n<td>\n<a href="http://www.consuls.org/record=b1411558">The clergy of L