source: trunk/cic-hcap/macros/extra.dm@ 13155

Last change on this file since 13155 was 13155, checked in by mdewsnip, 18 years ago

Made the page maximum 720 pixels wide when printed, so hopefully IE deals with it OK.

  • Property svn:keywords set to Author Date Id Revision
File size: 101.3 KB
Line 
1# ------------------------------------------------------------------------------------------
2# GLOBAL
3# ------------------------------------------------------------------------------------------
4
5package Global
6
7# Remove the Greenstone bar down the left-hand side
8_httpiconchalk_ {}
9
10# Don't display any of the Greenstone horizontal bars
11_iconblankbar_ {}
12
13# Wider than usual pages
14_pagewidth_ {100%}
15
16# Turn off highlighting within text
17_starthighlight_ {}
18_endhighlight_ {}
19
20# Convenience macro for a HTML 4 compliant blank line
21_cicblankline_ {<div>&nbsp;</div>}
22
23# Custom navigation bar
24_cicnavigationbar_ {
25<div class="cicprinthide">
26 <ul id="topnav">
27 <li>_cicaboutmenu_</li>
28 <li>_cicbrowsemenu_</li>
29 <li>_cicsearchmenu_</li>
30 <li id="btn_quick">_query:cicsimplequeryform_</li>
31 </ul>
32</div>
33}
34
35_cicaboutmenu_ {<a id="btn_about" href="_gwcgi_?a=p&amp;p=home" onClick="clickreturnvalue()" onMouseover="dropdownmenu(this, event, aboutmenu, '233px')" onMouseout="delayhidemenu()">About</a>}
36
37_cicbrowsemenu_ {<a id="btn_browse" href="_gwcgi_?a=p&amp;p=institutions" onClick="clickreturnvalue()" onMouseover="dropdownmenu(this, event, browsemenu, '233px')" onMouseout="delayhidemenu()">Browse</a>}
38
39_cicsearchmenu_ {<a id="btn_search" href="_gwcgi_?a=q" onClick="clickreturnvalue()" onMouseover="dropdownmenu(this, event, searchmenu, '233px')" onMouseout="delayhidemenu()">Search</a>}
40
41
42
43# ------------------------------------------------------------------------------------------
44# STYLE
45# ------------------------------------------------------------------------------------------
46
47package Style
48
49# Pages have a common style: page banner, then navigation bar, then page content
50_content_ {
51_pagebanner_
52
53_cicnavigationbar_
54
55_cicpagecontent_
56}
57
58_header_ {_cicheader_}
59
60_cicheader_ {
61_cgihead_
62_htmlhead_(_1_)_startspacer_
63}
64
65_cicmenujavascript_ {
66<script type="text/javascript">
67 var menuwidth = '165px' // default menu width
68 var menubgcolor = 'lightyellow' // menu bgcolor
69 var disappeardelay = 250 // menu disappear speed onMouseout (in milliseconds)
70 var hidemenu_onclick = "yes" // hide menu when user clicks within menu?
71
72 // Contents of the "about" menu
73 var aboutmenu = new Array()
74 aboutmenu[0] = '<a href="_gwcgi_?a=p&p=home">Introduction<\\/a>'
75 aboutmenu[1] = '<a href="_gwcgi_?a=p&p=background">Project Background<\\/a>'
76 aboutmenu[2] = '<a href="_gwcgi_?a=p&p=copyright">Copyright Information<\\/a>'
77 aboutmenu[3] = '<a href="_gwcgi_?a=p&p=documents">Application Documents<\\/a>'
78 aboutmenu[4] = '<a href="_gwcgi_?a=p&p=releases">News Coverage<\\/a>'
79 aboutmenu[5] = '<a href="_gwcgi_?a=p&p=glossary">Glossary<\\/a>'
80 aboutmenu[6] = '<a href="_gwcgi_?a=p&p=links">Links for Further Research<\\/a>'
81
82 // Contents of the "browse" menu
83 var browsemenu = new Array()
84 browsemenu[0] = '<a href="_gwcgi_?a=p&p=institutions">Institutions by name<\\/a>'
85 browsemenu[1] = '<a href="_gwcgi_?a=p&p=states">Institutions by state<\\/a>'
86 browsemenu[2] = '<a href="_gwcgi_?a=p&p=types">Places by type<\\/a>'
87 browsemenu[3] = '<a href="_gwcgi_?a=p&p=designers">Places by designer<\\/a>'
88 browsemenu[4] = '<a href="_gwcgi_?a=p&p=styles">Places by building style<\\/a>'
89 browsemenu[5] = '<a href="_gwcgi_?a=p&p=functions">Places by function<\\/a>'
90 browsemenu[6] = '<a href="_gwcgi_?a=p&p=dates">Places by time period<\\/a>'
91
92 // Contents of the "search" menu
93 var searchmenu = new Array()
94 searchmenu[0] = '<a href="_gwcgi_?a=q&qst=1">Institutions by state/region<\\/a>'
95 searchmenu[1] = '<a href="_gwcgi_?a=q&qre=1">Bibliography search<\\/a>'
96 searchmenu[2] = '<a href="_gwcgi_?a=q">Advanced search<\\/a>'
97
98_anylink:anylinkjavascript_
99
100</script>
101}
102
103# May be overridden by individual pages
104_cicpagejavascript_ {}
105
106
107
108# htmlhead uses:
109# _1_ - extra parameters for the body tag
110# _pagetitle_
111# _globalscripts_
112_htmlhead_ {
113<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
114<html_htmlextra_>
115<head>
116<title>_pagetitle_</title>
117<link rel="stylesheet" href="_httpcollection_/macros/style.css" type="text/css"/>
118_cicmenujavascript_
119_query:cicjavascript_
120_cicpagejavascript_
121</head>
122
123<body bgcolor="\#ffffff" text="\#000000" link="\#006666" alink="\#cc9900" vlink="\#006666" _1_>
124<div class="ciccontent">
125}
126
127_htmlfooter_ {
128_cicblankline_
129<hr>
130<center>
131<a href="mailto:[email protected]">Contact us</a> / <a href="_gwcgi_?a=p&amp;p=home">About Site</a> / <a href="http://www.cic.edu">About CIC</a><br />
132&copy; 2006<br />
133Council of Independent Colleges<br />
134Washington, DC<br />
135All rights reserved<br />
136Last update: November 2006<br />
137</center>
138</div>
139
140</body>
141</html>
142}
143
144# We use a very simple pagebanner: just the collection icon, no javalinks etc
145_pagebanner_ {<a href="_gwcgi_?a=p&amp;p=home"><img class="cicmastheadimage" alt="Council of Independent Colleges Historic Campus Architecture Project" src="_httpcollection_/images/masthead.gif"></a>}
146
147_pagetitle_ {The Council of Independent Colleges: Historic Campus Architecture Project}
148
149# No left margin
150_startspacer_ {}
151_endspacer_ {}
152
153
154
155# ------------------------------------------------------------------------------------------
156# HOME
157# ------------------------------------------------------------------------------------------
158
159package home
160
161_cicpagejavascript_ {
162<script type="text/javascript">
163var photos = new Array();
164photos[1] = "Timothy Alden and Alexander Temple, <i>Bentley Hall<\\/i> (1820), Allegheny College (PA)";
165photos[2] = "James Key Wilson (Walter & Wilson), <i>Old Main (view from the southwest)<\\/i> (1858-71 and later), Bethany College (WV)";
166photos[3] = "Marcel Breuer, <i>Abbey Church and Bell Tower<\\/i> (1958-61), Saint John's University (MN)";
167photos[4] = "John Shaver & Co., <i>Eugene E. Clossen Physical Education Center<\\/i> (1967), Graceland University (IA)";
168photos[5] = "<i>East Hall<\\/i> (1909), Oakwood College, Huntsville (AL)";
169photos[6] = "<i>Ralston Hall (view from the northwest)<\\/i> (late 1860s), Notre Dame de Namur University (CA)";
170photos[7] = "O'Meara and Hills & G.E. Quick, <i>Our Lady Queen of Peace Chapel and College Library<\\/i> (1938), College of St. Scholastica (MN)";
171photos[8] = "Fonthill Castle 1852, orig. constr.; 1872 add'n), College of Mount Saint Vincent (NY)";
172photos[9] = "Gordon Kaufman, Edward Huntsman-Trout, and others, em>Jaqua Quadrangle<\\/i> (1926-73), Scripps College (CA)";
173photos[10] = "T. D. McLaughlin and Oliver Davidson, <i>Musselman Library<\\/i> (1929-30), Bluffton University (OH)";
174photos[11] = "John CarrÚre & Thomas Hastings,<i>Hotel Ponce de Leon and Residence Hall<\\/i> (1885-88), Flagler College (FL)";
175photos[12] = "";
176photos[13] = "Peabody & Stearns, <i>Rosary Hall<\\/i> (1905), Albertus Magnus College (CT)";
177photos[14] = "<i>John Umble Center or the Performing Arts<\\/i> (1976-79), Goshen College (IN)";
178photos[15] = "<i>Old Main (Hauptgebaude)<\\/i> Elmhurst College (IL)";
179photos[16] = "Tallman & Tallman, <i>Dillingham Center<\\/i> (1969), Ithaca College (NY)";
180photos[17] = "Philip Johnson, <i>Chapel of St. Basil<\\/i> 1957, orig. master plan; 1997 chapel completed), University of St. Thomas (TX)";
181photos[18] = "<i>Cast iron gazebo<\\/i> (early 19th century), at center of gardens at Belmont University (TN)";
182photos[19] = "";
183
184window.onload = function() \{
185 // Function called when page loads
186 if (!document.getElementById) return;
187 if (!document.getElementById('cichomephoto')) return;
188
189 var rand = get_random(photos.length);
190 var photo = document.getElementById('cichomephoto');
191 photo.setAttribute('src', '_httpcollection_/images/mainphoto/' + rand + '.jpg');
192 photo.setAttribute('alt', photos[rand]);
193
194 var caption = document.getElementById('cichomephotocaption');
195 caption.innerHTML = photos[rand];
196\}
197
198function get_random(max) \{
199 var randNum = Math.floor(Math.random()*(max-1))+1;
200 return randNum;
201\}
202</script>
203}
204
205_cicpagecontent_ {
206<table cellspacing="0" cellpadding="0">
207 <tr>
208 <td id="cichomephotoarea" valign="top">
209 <img id="cichomephoto" src="_httpcollection_/images/mainphoto/blank.gif" alt="HCAP Photo" /><br />
210 <span id="cichomephotocaption">&nbsp;</span>
211 </td>
212
213 <td id="cichometext" valign="top">
214 <div class="cicheading">Welcome</div>
215
216 <p>Welcome to the CIC Historic Campus Architecture Project (HCAP), the first national architecture and landscape database of independent college and university campuses. This project presents information about significant buildings, landscapes, campus plans, and heritage sites of American higher education and identifies sources for further research. Supported by grants from the Getty Foundation, the CIC HCAP website documents nearly 2,000 places of historical significance on private college and university campuses and includes more than 4,300 images relating to these sites. To date, nearly 370 institutions have participated. On this site, web users can find institutions or places in a particular state or region; seek information about a specific type of architecture, designer, or time period; or gather data for future research.</p>
217
218 <p><b>List of Participating Institutions</b>: <a href="http://www.cic.org/projects_services/grants/getty_participants.pdf">Click here</a> to view the list of institutions and sites that are included in the CIC HCAP database. <br /><span style="font-size: 0.8em; line-height: 1.6em;">(This file is in PDF format. To view, you will need Adobe Acrobat, available for free from the <a href="http://www.adobe.com/products/acrobat/readermain.html">Adobe website</a>.)</span></p>
219 </td>
220 </tr>
221</table>
222}
223
224
225
226# ------------------------------------------------------------------------------------------
227# BACKGROUND (About -> Project Background)
228# ------------------------------------------------------------------------------------------
229
230package background
231
232_cicpagecontent_ {
233<div class="cicheading">Project Background</div>
234
235<p>In recent years, the study of campus history has received increasing interest in and attention by many sectors of the educational community. Institutions are working to understand more completely their physical environments and how these relate to educational mission, as well as wider historical trends. The CIC HCAP survey data and website have been developed to help various constituencies gain an awareness of and appreciation for campus history and also to learn from the architecture and landscape preservation efforts made by institutions.</p>
236
237<p>Between 2002 and 2006, the CIC HCAP was supported by two generous grants from the Campus Heritage Initiative of the Getty Foundation. From 2002-2004, CIC developed a survey to collect information about places of significant historical interest (in relation to architecture, landscape, American history, and the histories of education, religion, engineering, and culture) identified by representatives of institutions themselves. This survey was distributed among 724 independent, four-year, B.A.-granting institutions with less than 5,000 students. Nearly 50 percent of this original group participated in the project. In 2005, CIC began website development with a second two-year grant from the Getty Foundation.</p>
238
239<p>The CIC HCAP was guided by an advisory committee and developed by the coordinated efforts of a team of people from HCAP, CIC, and several independent professionals with whom HCAP contracted for specific services.</p>
240
241_cicblankline_
242<i>Advisory committee</i>
243
244<p><b>Thomas C. Celli</b>, President, Celli-Flynn Brennan, Architects and Planners (PA)</p>
245
246<p><b>Jeffrey A. Cohen</b>, Senior Lecturer, Bryn Mawr College</p>
247
248<p><b>Russell V. Keune</b>, Former Director of International Relations at the American Institute of Architects</p>
249
250<p><b>Randall Mason</b>, Associate Professor of Architecture, Graduate Program in Historic Preservation, School of Design, University of Pennsylvania</p>
251
252<p><b>Therese O'Malley</b>, Associate Dean of the Center for Advanced Study in the Visual Arts, National Gallery of Art in Washington, DC</p>
253
254<p><b>Damie Stillman</b>, Professor of Art History Emeritus, University of Delaware</p>
255
256<p><b>John Strassburger</b>, President, Ursinus College (PA)</p>
257
258_cicblankline_
259<i>CIC HCAP staff</i>
260
261<p><b>Barbara S. Christen</b>, Project Director<br />
262Project planning and management</p>
263
264<p><u>Part-time personnel:</u></p>
265
266<p><b>Jennifer M. Baggot</b>, Research Associate<br />
267Data input, document scanning, project correspondence, editing</p>
268
269<p><b>Jennifer R. D'Urso</b>, Research Associate<br />
270Data evaluation, database development, project research</p>
271
272<p><b>Lael J. Ensor</b>, Research Associate<br />
273Data editing, bibliographic research</p>
274
275<p><b>Amanda L. Hockensmith</b>, Research Associate<br />
276Data input and editing, design development</p>
277
278<p><b>Jane E. Lesnick</b>, Research Associate<br />
279Data editing, bibliographic research</p>
280
281<p><b>Matthew E. Linder</b>, Research Assistant<br />
282Data input, bibliographic research</p>
283
284<p><b>Timothy J. Mackin</b>, Research Associate<br />
285Data input and editing, data evaluation</p>
286
287<p><b>Christina Myers</b>, Research Associate<br />
288Data editing, bibliographic research</p>
289
290<p><b>Marianne S. Percival</b>, Research Associate<br />
291Data collection, project correspondence, project and bibliographic research</p>
292
293<p><b>Honora Shea</b>, Research Assistant<br />
294Data input, project correspondence</p>
295
296_cicblankline_
297<i>CIC staff</i>
298
299<p><b>Richard H. Ekman</b>, President<br />
300Project management</p>
301
302<p><b>Frederik Ohles</b>, Vice President for Advancement<br />
303Project liaison</p>
304
305<p><b>Laura A. Wilcox</b>, Vice President for Communications<br />
306Public relations, graphic design development</p>
307
308<p><b>August A. Adams</b>, Communications and Web Manager<br />
309Web postings, graphic design evaluation</p>
310
311_cicblankline_
312<i>Consultants</i>
313
314<p><b>Rodolfo Castro</b>, Catalone Design Company<br />
315Graphic and interface design</p>
316
317<p><b>Michael Collinson and Joseph Reggetz</b>, Business Engineering Incorporated<br />
318Hardware and server consultation</p>
319
320<p><b>Michael Dewsnip</b>, New Zealand Digital Library Project, University of Waikato<br />
321Greenstone software customization and development</p>
322
323<p><b>Joyce Essel</b>, Independent consultant<br />
324Database dvelopment</p>
325
326<p><b>Brian Harrington</b>, Independent consultant<br />
327Software and hardware consultation</p>
328
329<p><b>Stephen Rutz</b>, Steve Rutz Software<br />
330Database consultation</p>
331
332<p><b>David Seaman</b>, Executive Director, Digital Library Federation<br />
333Management and software consultation</p>
334
335<p><b>Allison Zhang</b>, Independent consultant<br />
336Software consultation</p>
337
338_cicblankline_
339<i>Site Design and Development</i>
340
341<p><b>Catalone Design Company</b> of Bethesda, Maryland, provided graphic and interface design for the website. For more information, see <a href="http://www.catalonedesign.com/">www.catalonedesign.com</a>.</p>
342
343<p><b>Greenstone</b>, a software developed by the New Zealand Digital Library Project at the University of Waikato, generates web pages dynamically in response to users navigating through the site. This has many advantages, including seamless search integration and the ability to instantly change the look and feel of the site. Search indexes and browsing structures are also precomputed, for quick browsing and searching.</p>
344
345<p>The CIC Historic Campus Architecture Project collection uses two purpose-built plugins to process the project data files. One plugin processes the Microsoft Access database used to store the data from the survey, generating a Greenstone "object" for each of the institutions, places, designers and references. It also generates small (thumbnail), medium, and large versions of each place image, and the site "browse" pages. The second plugin processes the Microsoft Word file containing bibliographic references not associated with particular places in the database.</p>
346
347<p>As well as having highly-customized document importing programs, the CIC HCAP collection has a completely customized design and user interface. This was implemented using Greenstone's formatting and macro languages, with over 120 new or customized macros. For more information about Greenstone, see <a href="http://www.greenstone.org/">www.greenstone.org</a>.</p>
348
349_cicblankline_
350<i>Server Technical Information</i>
351
352<p>The CIC HCAP site runs on a Intel Pentium III server class machine with 512MB of RAM and 140GB of disk space. The site is currently hosted in Hamilton, New Zealand but in the future will be hosted on the CIC's servers in Washington, DC.</p>
353
354_cicblankline_
355<hr>
356<p>The <b>Council of Independent Colleges</b> is an association of more than 560 independent, liberal arts colleges and universities and higher education affiliates and organizations that work together to strengthen college and university leadership, sustain high-quality education, and enhance private higher education's contributions to society. To fulfill this mission, CIC provides its members with skills, tools, and knowledge that address aspects of leadership, financial management and performance, academic quality, and institutional visibility. The Council is headquartered at One Dupont Circle in Washington, DC.</p>
357
358<p><b>The Getty Foundation</b> provides support to institutions and individuals throughout the world, funding a diverse range of projects that promote the understanding and conservation of the visual arts. The grant-making foundation furthers the work of all Getty Programs. The Foundation also encompasses the Getty Leadership Institute, the leading source of continuing professional development for current and future museum leaders. For more information, see: <a href="http://www.getty.edu">www.getty.edu</a>.</p>
359}
360
361
362
363# ------------------------------------------------------------------------------------------
364# COPYRIGHT (About -> Copyright Information)
365# ------------------------------------------------------------------------------------------
366
367package copyright
368
369_cicpagecontent_ {
370<div class="cicheading">Copyright and Permissions Information for CIC Historic Campus Architecture Project</div>
371
372<p>We ask you to adhere to the terms under which these materials are made available. The CIC Historic Campus Architecture Project as a whole, its texts, and its images are protected under the copyright laws of the United States and the Universal Copyright Convention. The copyright to the CIC Survey is held by the Council of Independent Colleges. The copyright to the images is held by the institutions and individuals who have generously contributed them.</p>
373
374<p>Publication (print or electronic) or commercial use of any of the copyrighted materials without direct authorization from the copyright holders is prohibited. The copying of materials is permitted only under the fair-use provisions of copyright law. To obtain the right to reuse an image, in most cases, permission must be obtained from the owning institution.</p>
375
376<p>The Library of Congress provides useful information on copyright at <a href="http://lcweb.loc.gov/copyright">http://lcweb.loc.gov/copyright</a> as well as an explanation of the fair-use doctrine at <a href="http://fairuse.stanford.edu">http://fairuse.stanford.edu</a>.</p>
377
378<hr>
379<p><i>Web Links</i>: It is not necessary to request permission in order to link to the CIC Survey from your website; however, we prefer that links be targeted to the introductory page of the CIC Survey (http://www.cicsurvey.org), and that any links to individual items be accompanied by a link to the introduction page.</p>
380
381<p><i>Citations</i>: To identify the CIC Survey as the source of information that you are using in a paper, article, or book, we ask that you include the complete title of the CIC Survey, its URL, and the date you accessed it, along with other relevant documentation. Here is an example: "Narrative History of Agnes Scott Hall, at Agnes Scott College," <i>Council of Independent Colleges Historic Campus Architecture Project</i>. 13 November 2005 &lt;http://www.cicsurvey.org&gt;.</p>
382
383<p>By accessing the Survey, you acknowledge that you have read and accepted these conditions.</p>
384}
385
386
387
388# ------------------------------------------------------------------------------------------
389# RELEASES (About -> News Coverage)
390# ------------------------------------------------------------------------------------------
391
392package releases
393
394_cicpagecontent_ {
395<div class="cicheading">News Coverage</div>
396
397<p class="cicreference">Biemiller, Lawrence. "From Modest to Magnificent." <i>The Chronicle of Higher Education</i> 52, no. 29 (March 24, 2006): A34-A35.</p>
398
399<p class="cicreference">Rubman, Kerri. "Getty Campus Grants Promote Preservation Planning." <i>Forum News</i> (March/April 2005): 3.</p>
400
401<p class="cicreference"><a href="http://www.cic.org/publications/independent/online/spring2005/getty_grant.htm">"CIC Receives Second Getty Grant for Historic Campus Architecture and Design Project."</a> <i>Independent</i>, newsletter of the Council of Independent Colleges (Spring 2005): 18-19.</p>
402
403<p class="cicreference">Munitz, Barry. "Place and History Matter on All Campuses." <i>The Chronicle of Higher Education</i> 51, no. 9 (October 22, 2004): B15.</p>
404
405<p class="cicreference"><a href="http://www.cic.org/publications/independent/online/summer2004/historic_architecture.html">"CIC Develops Historic Architecture Database."</a> <i>Independent</i>, newsletter of the Council of Independent Colleges (Summer 2004): 11.</p>
406
407<p class="cicreference">Arenson, Karen W. "Regilding a Stanford White Landmark." <i>New York Times</i>, July 30, 2004, C13 (national edition).</p>
408
409<p class="cicreference">Christen, Barbara S. "The Council of Independent Colleges Survey of Historic Architecture and Design: Research Issues in Landscape Studies." <i>Vineyard</i> 5, no. 1 (2004): 8-10.</p>
410
411<p class="cicreference"><a href="http://www.cic.org/publications/independent/online/summer2003/historic_arch.html">"Hundreds Respond to CIC Survey On Historic Architecture."</a> <i>Independent</i>, newsletter of the Council of Independent Colleges (Summer 2003): 8.</p>
412}
413
414
415
416# ------------------------------------------------------------------------------------------
417# DOCUMENTS (About -> Application Documents)
418# ------------------------------------------------------------------------------------------
419
420package documents
421
422_cicpagecontent_ {
423<div class="cicheading">Application Documents</div>
424
425<p>To view the application documents from phase one, click on the links below. (In order to view the PDF files, the minimum software requirement is version 4.0 Adobe Acrobat, available for free from the <a href="http://www.adobe.com/products/acrobat/readermain.html">Adobe web site</a>.)</p>
426
427<a href="http://www.cic.org/projects_services/grants/getty_letter.asp">Letter of Instruction to Campus Liaison</a><br />
428<a href="http://www.cic.org/projects_services/grants/getty_questionnaire.pdf">Questionnaire</a> (PDF)<br />
429<a href="http://www.cic.org/projects_services/grants/getty_definitions.pdf">Definitions and Visual Examples</a> (PDF)<br />
430<a href="http://www.cic.org/projects_services/grants/getty_guidelines.pdf">Submission Guidelines</a> (PDF)<br />
431}
432
433
434
435# ------------------------------------------------------------------------------------------
436# GLOSSARY (About -> Glossary)
437# ------------------------------------------------------------------------------------------
438
439package glossary
440
441_cicpagecontent_ {
442<div class="cicheading">Glossary</div>
443
444<p><span class="cicsubheading">Definitions and Visual Examples</span> (some based on definitions of the Getty Art and Architecture Thesaurus)<br />
445(as noted in Questionnaire, Part II./Section 2. Description/A. Building/1. Architectural classification)</p>
446
447<div class="cicglossaryentry">
448<img class="cicglossaryphoto" alt="Dartmouth Hall, Dartmouth College (photo courtesy of University of Maryland slide collection)" src="_httpcollection_/images/americancolonial.jpg"/>
449AMERICAN COLONIAL<br />
450Refers to the culture and style of architecture created in the region of the current United States during the period when it was colonized by Europeans, primarily during the 17th and 18th centuries. The term generally refers specifically to the culture and styles of the British colonies on the East Coast of the United States, generally not including the French or Spanish colonies, which are usually called French colonial or Spanish colonial.<br />
451<i>Example image: Dartmouth Hall, 1784-1791 (and later), Dartmouth College, Hanover, N.H. (photo courtesy of University of Maryland slide collection)</i>
452</div>
453
454<div class="cicglossaryentry">
455<img class="cicglossaryphoto" alt="President's House, Williams College (HABS/HAER)" src="_httpcollection_/images/federal.jpg"/>
456FEDERAL<br />
457Refers to the architecture that flourished in the new American republic from approximately 1785 to 1820. Inspired by European neo-classicism, especially as practiced in England by Robert Adam, though modified by late colonial tendencies, it also reflects the revival of Roman architectural styles, especially in the design of government buildings. Endorsed by Thomas Jefferson and Benjamin Henry Latrobe, that theme was driven partially by the metaphorical concept of the United States as analogous to the Roman Republic in its political philosophy.<br />
458<i>Example image: President's House, Williams College, Williamstown, Mass. (HABS/HAER)</i>
459</div>
460
461<div class="cicglossaryentry">
462<img class="cicglossaryphoto" alt="Morrison College, Transylvania University (HABS/HAER)" src="_httpcollection_/images/greekrevival.jpg"/>
463GREEK REVIVAL<br />
464Refers to a style of architecture in Europe and the United States begun in the 1750s in Europe, and flourishing there from the 1790s and then in this country from approximately 1815 to the 1850s, which was characterized by the use of classical Greek forms and ornament. Inspired by 18th-century archaeological discoveries, it attempted to follow closely original models. Greek revival buildings often look like temples, with a series of large stone or wood columns marking part or all of the structure, though there are many examples that emphasize Greek details rather than whole buildings. In the United States, it flourished at the time of the Greek war for independence from Turkey, and many saw the style as a manifestation of democracy.<br />
465<i>Example image: Morrison College, 1830, Transylvania University, Lexington, Ky. (HABS/HAER)</i>
466</div>
467
468<div class="cicglossaryentry">
469<img class="cicglossaryphoto" alt="Ralston Hall, Univ. of Notre Dame de Namur" src="_httpcollection_/images/italianate.jpg"/>
470ITALIANATE<br />
471A mid- to-late-19th-century architectural style, it was inspired by Italian Renaissance buildings, both the high-style urban palazzo and the less formal country villa. Often residential and often featuring a low-pitched hipped roof topped by a belvedere, or rooftop pavilions intended as lookouts or for the enjoyment of a view, it can also refer to more formal buildings ranging from commercial to public and residential.<br />
472<i>Example image: Ralston Hall, University of Notre Dame de Namur, after 1865, Belmont, Calif. (HABS/HAER)</i>
473</div>
474
475<div class="cicglossaryentry">
476<img class="cicglossaryphoto" alt="Old Main building, Bethany College (HABS/HAER)" src="_httpcollection_/images/gothicrevival.jpg"/>
477GOTHIC REVIVAL<br />
478Refers mainly to a style that flourished first in England and then spread to the European continent but even more strongly to America, beginning in the mid- to late 18th century, triumphing in the mid-19th century, and continuing into the twentieth. The style is characterized by the use of pointed arches, rosettes, pinnacles, tracery, foils, and polychrome effects inspired by Gothic architecture and at times reproduced with the general aim of historical accuracy, though often the spirit was as important as the details. Especially associated with churches, it could also be found in a wide range of building types, including by the late 19th and 20th century examples in campus architecture in what came to be called Collegiate Gothic.<br />
479<i>Example image: "Old Main" Building, 1911-1912, Bethany College, Bethany, W. Va. (HABS/HAER)</i>
480</div>
481
482<div class="cicglossaryentry">
483<img class="cicglossaryphoto" alt="Glatfelter Hall, Gettysbury College (HABS/HAER)" src="_httpcollection_/images/romanesquerevival.jpg"/>
484ROMANESQUE REVIVAL<br />
485Refers to a style in European and American architecture dating from the 1820s to the end of the 19th century that was based on 11th- and 12th-century Romanesque church architecture. It is primarily characterized by the use of semicircular arches, barrel and groin vaults, massive blocks of masonry and, at times, the spare use of Romanesque and/or naturalistic ornament. A specific variety, called Richardsonian Romanesque, was inspired by the architecture of the American H. H. Richardson, and flourished in the last three decades of the 19th century.<br />
486<i>Example image: Glatfelter Hall, 1888-1889, Gettysbury College, Gettysburg, Pa. (HABS/HAER)</i>
487</div>
488
489<div class="cicglossaryentry">
490<img class="cicglossaryphoto" alt="Residential Village (Theme House), Agnes Scott College (CIC-HCAP collection)" src="_httpcollection_/images/victorianstyles.jpg"/>
491VICTORIAN STYLES<br />
492Refers to a wide variety of styles exhibited during the 19th century during Queen Victoria’s reign in Britain (1837-1900) and during the same period in the United States. Often labeled Romantic, these styles, which ranged from Italianate and Gothic revival to vernacular and Queen Anne revival, were expressed in all building types.<br />
493<i>Example image: Residential Village (Theme House), 1895-1896, Agnes Scott College, Decatur, Ga. (CIC-HCAP collection)</i>
494</div>
495
496<div class="cicglossaryentry">
497<img class="cicglossaryphoto" alt="Cochran Hall, Allegheny College (CIC-HCAP collection)" src="_httpcollection_/images/beauxartsclassicism.jpg"/>
498BEAUX-ARTS CLASSICISM<br />
499Refers to the revival of classicism, especially as practiced in Italy and France during the Renaissance and Baroque eras of the 15th to 18th centuries, that flourished in Europe and America in the late 19th and early 20th centuries. Inspired by the approach to architectural design espoused at the Ecole des Beaux-Arts in Paris, this style included the use of classically articulated and often symmetrical massing, a primary axial orientation in plan (often with subsidiary axes), and hierarchically arranged and related internal spaces that offered the opportunity for a directed, processional movement through a building. Its flourishing in America coincided with the emergence of the United States as a world power.<br />
500<i>Example image: Cochran Hall, 1907-1908, Allegheny College, Meadville, Penn. (CIC-HCAP collection)</i>
501</div>
502
503<div class="cicglossaryentry">
504<img class="cicglossaryphoto" alt="Washington Hall, Washington and Lee University" src="_httpcollection_/images/colonialrevival.jpg"/>
505COLONIAL REVIVAL<br />
506Refers to a movement in architecture and interior design prevalent in the late 19th century and well into the 20th that revives the styles of the 17th, 18th, and early 19th centuries in colonial and federal America. The style, though especially seen in domestic architecture, also was found in other building types. Subsumed within this general rubric was not only a revival of 17th century clapboard buildings, but also a Georgian revival, which was inspired by English and American architecture of the 18th century. This latter tends to feature symmetrical façades, often characterized by brick, pitched roofs, windows with sashes, and fanlights. It also often includes white painted trim and decorative moldings and elements.<br />
507<i>Example image: Washington Hall, 1824, Washington and Lee University, Lexington, Va. (HABS)</i>
508</div>
509
510<div class="cicglossaryentry">
511<img class="cicglossaryphoto" alt="Our Lady Queen of Peace Chapel, Lourdes College (CIC-HCAP collection)" src="_httpcollection_/images/mission.jpg"/>
512MISSION/MISSION REVIVAL<br />
513As a subtype of Spanish Colonial revival architectural style, this style is characterized by simplicity of form and ornamentation. Particularly between approximately 1900 and 1915 (although also later) especially in the southern, western, and southwestern regions of the United States, Mission revival architecture was utilized in all kinds of buildings.<br />
514<i>Example image: Our Lady Queen of Peace Chapel, 1959-1961, Lourdes College, Sylvania, Ohio (CIC-HCAP collection)</i>
515</div>
516
517<div class="cicglossaryentry">
518<img class="cicglossaryphoto" alt="Annie Pfeiffer Chapel, Florida Southern College (HABS/HAER)" src="_httpcollection_/images/modern.jpg"/>
519MODERN/PRE- AND POST-WWII<br />
520Refers to the style of architecture that emerged in Holland, France, and Germany just before but primarily after World War I and spread throughout the world, becoming a leading architectural style until the 1960s/1970s. This style is characterized by a rejection of traditional period styling; an emphasis on volume over mass; the use of lightweight, mass-produced, industrial materials, but also reinforced concrete; frequent rejection of ornament and color; repetitive modular forms; and the use of flat surfaces, typically alternating with areas of glass. Some later examples may also be particularly sculptural in massing.<br />
521<i>Example image: Annie Pfeiffer Chapel, des. 1940, Florida Southern College, Lakeland, Fla. (HABS/HAER)</i>
522</div>
523
524<div class="cicglossaryentry">
525<img class="cicglossaryphoto" alt="Williams College Museum of Art (rear façade), Williams College (Williams College Department of Art slide collection)" src="_httpcollection_/images/postmodern.jpg"/>
526POSTMODERN<br />
527Refers to architecture as early as the mid-1960s but more often from the mid-1970s to the early 1990s, in which buildings often have a renewed interest in the color and patterns of materials, and, in many cases, the use of stylistic quotations from many different periods combined to a contradictory effect of varying scale, proportions, and scenographic effect.<br />
528<i>Example image: Williams College Museum of Art (rear façade), addition of ca. 1981, Williamstown, Mass. (Williams College, Dept. of Art, slide collection)</i>
529</div>
530
531<div class="cicglossaryentry">
532<img class="cicglossaryphoto" alt="Admissions and Careers Services Center, Trinity College (CIC-HCAP collection)" src="_httpcollection_/images/contemporary.jpg"/>
533CONTEMPORARY<br />
534Although often used earlier in the twentieth century to refer to modernism, it especially refers to architecture from 1995 to the present, encompassing a wide range of architectural styles and approaches, often incorporating elements of modernism and postmodernism.<br />
535<i>Example image: Admissions and Careers Services Center (detail, exterior), Trinity College, Hartford, Conn. (CIC-HCAP collection)</i>
536</div>
537
538<div class="cicglossaryentry">
539<img class="cicglossaryphoto" alt="Old Castle, Baker University (HABS/HAER)" src="_httpcollection_/images/vernacularregionalist.jpg"/>
540REGIONALIST/VERNACULAR<br />
541Refers to architecture that does not fit easily into the stylistic categories given above that rely primarily on period styling. This kind of architecture instead emphasizes the building traditions and materials of a particular region. These buildings may have been constructed during any period in American architecture. Fieldstone buildings in Pennsylvania or the Midwest, adobe or stucco mission-type buildings with tile roofs in the West or Southwest, and local limestone buildings in Indiana, are a few examples of this kind of response in campus architecture.<br />
542<i>Example image: Old Castle, 1858, Baker University, Baldwin City, Kans. (HABS/HAER)</i>
543</div>
544
545<p style="clear: both"><span class="cicsubheading">Further Definitions</span><br />
546(as noted in Questionnaire, Part II./Section 2. Description/B. Entire campus and C. Campus plan)</p>
547
548<p><b>Informal or not formally planned:</b><br />
549No comprehensive master plan was a part of campus building or landscaping efforts. Campus has developed without any overarching schema.</p>
550
551<p><b>Irregular/Picturesque:</b><br />
552Master plan of part or all of the campus has curving roads and pathways that provide circulation amidst non-hierarchically placed buildings. Vegetation, either natural or planned, often is clustered in irregular, unsymmetrical groupings, so as to create a more natural, though actually planned, picturesque effect.</p>
553
554<p><b>Linear:</b><br />
555Master plan of all or part of the campus has a primary axis, on one or both sides of which building and/or landscaping efforts have been concentrated. Circulation on the campus is directed along this primary axis.</p>
556
557<p><b>Quadrangle/Beaux-Arts classicism:</b><br />
558Master plan of part or all of the campus has a primary axis that serves as an important means of circulation and orientation for buildings. Structures are often placed in symmetrical arrangements, with a clear hierarchy in size and location established between the focal point(s) of a central building or structure placed at one end or both ends of the plan and subsidiary buildings located around these elements.</p>
559
560<p><b>Modern (open plan):</b><br />
561Though clearly planned, these campuses utilize a master plan that has a more open orientation between buildings, with no obvious reliance on the hierarchical arrangements of the more classically-ordered quadrangle and Beaux-Arts tradition.</p>
562}
563
564
565
566# ------------------------------------------------------------------------------------------
567# LINKS (About -> Links for Further Research)
568# ------------------------------------------------------------------------------------------
569
570package links
571
572_cicpagecontent_ {
573<div class="cicheading">Links</div>
574
575<div class="cicsubheading"><p>Supporting Organizations</p></div>
576
577<p>
578Council of Independent Colleges: <a href="http://www.cic.org">http://www.cic.org</a><br />
579
580Getty Foundation: <a href="http://www.getty.edu">http://www.getty.edu</a>
581</p>
582
583<div class="cicsubheading"><p>Related Websites</p></div>
584
585<p>
586Society for College and University Planning: <a href="http://www.scup.org">http://www.scup.org</a><br />
587
588National Historic Landmarks: <a href="http://www.cr.nps.gov/nhl/">http://www.cr.nps.gov/nhl/</a><br />
589
590National Register of Historic Places: <a href="http://www.cr.nps.gov/nr/">http://www.cr.nps.gov/nr/</a><br />
591
592State Historic Preservation Offices: <a href="http://www.cr.nps.gov/nr/shpolist.htm">http://www.cr.nps.gov/nr/shpolist.htm</a><br />
593
594Historic American Building Survey and Historic American Engineering Record: <a href="http://www.cr.nps.gov/habshaer">http://www.cr.nps.gov/habshaer</a><br />
595
596Chronicle of Higher Education: <a href="http://chronicle.com">http://chronicle.com</a><br />
597
598American Planning Association: <a href="http://www.planning.org">http://www.planning.org</a><br />
599
600National Association of State Universities and Land-Grant Colleges: <a href="http://www.nasulgc.org">http://www.nasulgc.org</a>
601</p>
602}
603
604
605
606# ------------------------------------------------------------------------------------------
607# INSTITUTIONS (Browse -> Institution)
608# ------------------------------------------------------------------------------------------
609
610package institutions
611
612_cicpagecontent_ {
613<div class="cicheading">Institutions</div>
614
615<center>_cicstaticbrowserquicklinks_</center>
616
617_cicstaticbrowser_
618}
619
620
621
622# ------------------------------------------------------------------------------------------
623# TYPES (Browse -> Type of Place)
624# ------------------------------------------------------------------------------------------
625
626package types
627
628_cicpagecontent_ {
629<div class="cicheading">Type of Place</div>
630_cicblankline_
631<table width="100%">
632 <tr>
633 <td width="50%"><center><a href="_gwcgi_?a=p&amp;p=typesIndividualbuilding"><img alt="Cooper Hall, Limestone College" src="_httpcollection_/images/building.jpg"/><br />Buildings</a></center></td>
634 <td width="50%"><center><a href="_gwcgi_?a=p&amp;p=typesCampusarrangement"><img alt="Campus Plan, Bryan College" src="_httpcollection_/images/arrangement.jpg"/><br />Campus arrangements</a></center></td>
635 </tr>
636 <tr>
637 <td width="50%"><center><a href="_gwcgi_?a=p&amp;p=typesLandscapesite"><img alt="Tableau in the Mary Dell (ca. 1912)" src="_httpcollection_/images/landscapesite.jpg"/><br />Landscape sites</a></center></td>
638 <td width="50%"><center><a href="_gwcgi_?a=p&amp;p=typesBuildinggroup"><img alt="Hotel Ponce de Leon, Flagler College" src="_httpcollection_/images/buildinggroup.jpg"/><br />Building groups</a></center></td>
639 </tr>
640</table>
641}
642
643package typesIndividualbuilding
644_cicpagecontent_ { <div class="cicheading">Buildings</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
645
646package typesLandscapesite
647_cicpagecontent_ { <div class="cicheading">Landscape Sites</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
648
649package typesCampusarrangement
650_cicpagecontent_ { <div class="cicheading">Campus Arrangements</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
651
652package typesBuildinggroup
653_cicpagecontent_ { <div class="cicheading">Building Groups</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
654
655
656
657# ------------------------------------------------------------------------------------------
658# DESIGNERS (Browse -> Designer)
659# ------------------------------------------------------------------------------------------
660
661package designers
662
663_cicpagecontent_ { <div class="cicheading">Designers</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
664
665
666
667# ------------------------------------------------------------------------------------------
668# STATES (Browse -> State)
669# ------------------------------------------------------------------------------------------
670
671package states
672
673_cicpagecontent_ {
674<div class="cicheading">States</div>
675
676<center><img alt="US state map" src="_httpcollection_/images/usa_map-mono.gif" usemap="#states"/></center>
677<map name="states">
678 <area shape="rect" coords="524,286,551,313" href="#Alabama">
679 <area shape="rect" coords="154,379,197,413" href="#Alaska">
680 <area shape="rect" coords="202,248,237,280" href="#Arizona">
681 <area shape="rect" coords="444,257,475,283" href="#Arkansas">
682 <area shape="rect" coords="104,177,140,209" href="#California">
683 <area shape="rect" coords="278,186,324,211" href="#Colorado">
684 <area shape="rect" coords="690,146,712,161" href="#Connecticut">
685 <area shape="rect" coords="677,183,701,196" href="#Delaware">
686 <area shape="rect" coords="680,216,706,234" href="#DistrictofColumbia">
687 <area shape="rect" coords="604,352,628,376" href="#Florida">
688 <area shape="rect" coords="564,280,598,303" href="#Georgia">
689 <area shape="rect" coords=" 69,314, 97,333" href="#Hawaii">
690 <area shape="rect" coords="197,103,228,123" href="#Idaho">
691 <area shape="rect" coords="483,171,509,193" href="#Illinois">
692 <area shape="rect" coords="521,169,545,189" href="#Indiana">
693 <area shape="rect" coords="432,149,462,169" href="#Iowa">
694 <area shape="rect" coords="371,201,404,223" href="#Kansas">
695 <area shape="rect" coords="539,215,565,232" href="#Kentucky">
696 <area shape="rect" coords="449,312,475,333" href="#Louisiana">
697 <area shape="rect" coords="693, 54,719, 75" href="#Maine">
698 <area shape="rect" coords="686,198,712,213" href="#Maryland">
699 <area shape="rect" coords="715,111,743,128" href="#Massachusetts">
700 <area shape="rect" coords="532,122,557,142" href="#Michigan">
701 <area shape="rect" coords="418, 88,449,108" href="#Minnesota">
702 <area shape="rect" coords="485,287,513,308" href="#Mississippi">
703 <area shape="rect" coords="441,202,474,222" href="#Missouri">
704 <area shape="rect" coords="258, 57,291, 80" href="#Montana">
705 <area shape="rect" coords="358,156,390,173" href="#Nebraska">
706 <area shape="rect" coords="153,159,185,179" href="#Nevada">
707 <area shape="rect" coords="706, 95,732,109" href="#NewHampshire">
708 <area shape="rect" coords="680,165,702,180" href="#NewJersey">
709 <area shape="rect" coords="274,258,309,278" href="#NewMexico">
710 <area shape="rect" coords="641,108,665,127" href="#NewYork">
711 <area shape="rect" coords="616,229,643,248" href="#NorthCarolina">
712 <area shape="rect" coords="353, 64,385, 83" href="#NorthDakota">
713 <area shape="rect" coords="557,165,587,181" href="#Ohio">
714 <area shape="rect" coords="383,250,416,269" href="#Oklahoma">
715 <area shape="rect" coords="128, 82,163,105" href="#Oregon">
716 <area shape="rect" coords="614,145,643,165" href="#Pennsylvania">
717 <area shape="rect" coords="703,133,719,146" href="#RhodeIsland">
718 <area shape="rect" coords="600,260,624,279" href="#SouthCarolina">
719 <area shape="rect" coords="353,109,384,128" href="#SouthDakota">
720 <area shape="rect" coords="523,241,549,257" href="#Tennessee">
721 <area shape="rect" coords="360,307,400,337" href="#Texas">
722 <area shape="rect" coords="214,176,247,200" href="#Utah">
723 <area shape="rect" coords="657, 55,680, 72" href="#Vermont">
724 <area shape="rect" coords="616,202,642,217" href="#Virginia">
725 <area shape="rect" coords="144, 35,177, 51" href="#Washington">
726 <area shape="rect" coords="587,191,610,204" href="#WestVirginia">
727 <area shape="rect" coords="471,109,499,128" href="#Wisconsin">
728 <area shape="rect" coords="269,119,305,144" href="#Wyoming">
729</map>
730
731<center><b><a href="#Alabama">A</a>&nbsp;B&nbsp;<a href="#California">C</a>&nbsp;<a href="#Delaware">D</a>&nbsp;E&nbsp;<a href="#Florida">F</a>&nbsp;<a href="#Georgia">G</a>&nbsp;<a href="#Hawaii">H</a>&nbsp;<a href="#Idaho">I</a>&nbsp;J&nbsp;<a href="#Kansas">K</a>&nbsp;<a href="#Louisiana">L</a>&nbsp;<a href="#Maine">M</a>&nbsp;<a href="#Nebraska">N</a>&nbsp;<a href="#Ohio">O</a>&nbsp;<a href="#Pennsylvania">P</a>&nbsp;Q&nbsp;<a href="#RhodeIsland">R</a>&nbsp;<a href="#SouthCarolina">S</a>&nbsp;<a href="#Tennessee">T</a>&nbsp;<a href="#Utah">U</a>&nbsp;<a href="#Vermont">V</a>&nbsp;<a href="#Washington">W</a>&nbsp;X&nbsp;Y&nbsp;Z&nbsp;</b></center>
732
733_cicstaticbrowser_
734}
735
736
737
738# ------------------------------------------------------------------------------------------
739# STYLES (Browse -> Building Styles)
740# ------------------------------------------------------------------------------------------
741
742package styles
743
744_cicpagecontent_ {
745<div class="cicheading">Styles</div>
746
747<p>
748<a href="_gwcgi_?a=p&amp;p=stylesAmericancolonial">American Colonial</a><br />
749<a href="_gwcgi_?a=p&amp;p=stylesFederal">Federal</a><br />
750<a href="_gwcgi_?a=p&amp;p=stylesGreekrevival">Greek Revival</a><br />
751<a href="_gwcgi_?a=p&amp;p=stylesItalianate">Italianate</a><br />
752<a href="_gwcgi_?a=p&amp;p=stylesGothicrevival">Gothic Revival</a><br />
753<a href="_gwcgi_?a=p&amp;p=stylesRomanesquerevival">Romanesque Revival</a><br />
754<a href="_gwcgi_?a=p&amp;p=stylesVictorian">Victorian Styles</a><br />
755<a href="_gwcgi_?a=p&amp;p=stylesBeauxArtsclassicism">Beaux-Arts Classicism</a><br />
756<a href="_gwcgi_?a=p&amp;p=stylesColonialrevival">Colonial Revival</a><br />
757<a href="_gwcgi_?a=p&amp;p=stylesMissionMissionrevival">Mission/Mission Revival</a><br />
758<a href="_gwcgi_?a=p&amp;p=stylesModernpreWWII">Modern/pre-World War II</a><br />
759<a href="_gwcgi_?a=p&amp;p=stylesModernpostWWII">Modern/post-World War II</a><br />
760<a href="_gwcgi_?a=p&amp;p=stylesPostmodern">Postmodern</a><br />
761<a href="_gwcgi_?a=p&amp;p=stylesContemporary">Contemporary</a><br />
762<a href="_gwcgi_?a=p&amp;p=stylesRegionalistVernacular">Regionalist Vernacular</a><br />
763<a href="_gwcgi_?a=p&amp;p=stylesOther">Other</a><br />
764</p>
765
766<p>See the <a href="_gwcgi_?a=p&amp;p=glossary">Glossary</a> for full definition of terms.</p>
767}
768
769package stylesAmericancolonial
770_cicpagecontent_ { <div class="cicheading">American Colonial</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
771
772package stylesFederal
773_cicpagecontent_ { <div class="cicheading">Federal</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
774
775package stylesGreekrevival
776_cicpagecontent_ { <div class="cicheading">Greek Revival</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
777
778package stylesItalianate
779_cicpagecontent_ { <div class="cicheading">Italianate</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
780
781package stylesGothicrevival
782_cicpagecontent_ { <div class="cicheading">Gothic Revival</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
783
784package stylesRomanesquerevival
785_cicpagecontent_ { <div class="cicheading">Romanesque Revival</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
786
787package stylesVictorian
788_cicpagecontent_ { <div class="cicheading">Victorian</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
789
790package stylesBeauxArtsclassicism
791_cicpagecontent_ { <div class="cicheading">Beaux-Arts Classicism</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
792
793package stylesColonialrevival
794_cicpagecontent_ { <div class="cicheading">Colonial Revival</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
795
796package stylesMissionMissionrevival
797_cicpagecontent_ { <div class="cicheading">Mission/Mission Revival</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
798
799package stylesModernpreWWII
800_cicpagecontent_ { <div class="cicheading">Modern/pre-World War II</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
801
802package stylesModernpostWWII
803_cicpagecontent_ { <div class="cicheading">Modern/post-World War II</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
804
805package stylesPostmodern
806_cicpagecontent_ { <div class="cicheading">Postmodern</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
807
808package stylesContemporary
809_cicpagecontent_ { <div class="cicheading">Contemporary</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
810
811package stylesRegionalistVernacular
812_cicpagecontent_ { <div class="cicheading">Regionalist Vernacular</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
813
814package stylesOther
815_cicpagecontent_ { <div class="cicheading">Other</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
816
817
818
819# ------------------------------------------------------------------------------------------
820# DATES (Browse -> Time Period)
821# ------------------------------------------------------------------------------------------
822
823package dates
824
825_cicpagecontent_ {
826<div class="cicheading">Time Period</div>
827
828<p>
829<a href="_gwcgi_?a=p&amp;p=datespre1800">pre-1800</a><br />
830<a href="_gwcgi_?a=p&amp;p=dates18001850">1800-1850</a><br />
831<a href="_gwcgi_?a=p&amp;p=dates18501900">1850-1900</a><br />
832<a href="_gwcgi_?a=p&amp;p=dates19001945">1900-1945</a><br />
833<a href="_gwcgi_?a=p&amp;p=dates19451995">1945-1995</a><br />
834<a href="_gwcgi_?a=p&amp;p=datespost1995">post-1995</a><br />
835</p>
836}
837
838package datespre1800
839_cicpagecontent_ { <div class="cicheading">pre-1800</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
840
841package dates18001850
842_cicpagecontent_ { <div class="cicheading">1800-1850</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
843
844package dates18501900
845_cicpagecontent_ { <div class="cicheading">1850-1900</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
846
847package dates19001945
848_cicpagecontent_ { <div class="cicheading">1900-1945</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
849
850package dates19451995
851_cicpagecontent_ { <div class="cicheading">1945-1995</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
852
853package datespost1995
854_cicpagecontent_ { <div class="cicheading">post-1995</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
855
856
857
858# ------------------------------------------------------------------------------------------
859# FUNCTIONS (Browse -> Function)
860# ------------------------------------------------------------------------------------------
861
862package functions
863
864_cicpagecontent_ {
865<div class="cicheading">Function</div>
866_cicblankline_
867<table cellpadding="0" cellspacing="0" width="100%">
868<tr>
869<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsacademicdepartmentbuilding">Academic department building</a></td>
870<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsinfirmary">Infirmary</a></td>
871</tr>
872<tr>
873<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsadministration">Administration</a></td>
874<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionslibrary">Library</a></td>
875</tr>
876<tr>
877<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsadmissionsoffice">Admissions office</a></td>
878<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsmasterplancampus">Master plan (campus)</a></td>
879</tr>
880<tr>
881<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsalumnicenter">Alumni center</a></td>
882<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsmasterplanlandscape">Master plan (landscape)</a></td>
883</tr>
884<tr>
885<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsarboretum">Arboretum</a></td>
886<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsmemorialsite">Memorial site</a></td>
887</tr>
888<tr>
889<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsarchaeologicalsite">Archaeological site</a></td>
890<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsmuseum">Museum</a></td>
891</tr>
892<tr>
893<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsauditorium">Auditorium</a></td>
894<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsobservatory">Observatory</a></td>
895</tr>
896<tr>
897<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsbelltower">Bell tower</a></td>
898<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsoldmain">Old main</a></td>
899</tr>
900<tr>
901<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionschapel">Chapel</a></td>
902<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsoutdoorspace">Outdoor space</a></td>
903</tr>
904<tr>
905<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsclassrooms">Classroom(s)</a></td>
906<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionspresidentshouse">President's house</a></td>
907</tr>
908<tr>
909<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsdebatingsociety">Debating society</a></td>
910<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsprivateresidence">Private residence</a></td>
911</tr>
912<tr>
913<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsdininghall">Dining hall</a></td>
914<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsresidencehall">Residence hall</a></td>
915</tr>
916<tr>
917<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsfacilitymanagementbuilding">Facility management building</a></td>
918<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsstadium">Stadium</a></td>
919</tr>
920<tr>
921<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsfacultyoffices">Faculty offices</a></td>
922<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsstudentunion">Student union</a></td>
923</tr>
924<tr>
925<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsgardens">Gardens (planned)</a></td>
926<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionstheater">Theater</a></td>
927</tr>
928<tr>
929<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsgreeklettersociety">Greek letter society</a></td>
930<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsother">Other</a></td>
931</tr>
932<tr>
933<td width="50%"><a href="_gwcgi_?a=p&amp;p=functionsgymnasium">Gymnasium</a></td>
934<td width="50%">&nbsp;</td>
935</tr>
936</table>
937}
938
939package functionsacademicdepartmentbuilding
940_cicpagecontent_ { <div class="cicheading">Academic department building</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
941
942package functionsadministration
943_cicpagecontent_ { <div class="cicheading">Administration</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
944
945package functionsadmissionsoffice
946_cicpagecontent_ { <div class="cicheading">Admissions office</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
947
948package functionsalumnicenter
949_cicpagecontent_ { <div class="cicheading">Alumni center</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
950
951package functionsarboretum
952_cicpagecontent_ { <div class="cicheading">Arboretum</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
953
954package functionsarchaeologicalsite
955_cicpagecontent_ { <div class="cicheading">Archaeological site</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
956
957package functionsauditorium
958_cicpagecontent_ { <div class="cicheading">Auditorium</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
959
960package functionsbelltower
961_cicpagecontent_ { <div class="cicheading">Bell tower</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
962
963package functionschapel
964_cicpagecontent_ { <div class="cicheading">Chapel</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
965
966package functionsclassrooms
967_cicpagecontent_ { <div class="cicheading">Classroom(s)</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
968
969package functionsdebatingsociety
970_cicpagecontent_ { <div class="cicheading">Debating society</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
971
972package functionsdininghall
973_cicpagecontent_ { <div class="cicheading">Dining hall</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
974
975package functionsfacilitymanagementbuilding
976_cicpagecontent_ { <div class="cicheading">Facility management building</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
977
978package functionsfacultyoffices
979_cicpagecontent_ { <div class="cicheading">Faculty offices</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
980
981package functionsgardens
982_cicpagecontent_ { <div class="cicheading">Gardens (planned)</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
983
984package functionsgreeklettersociety
985_cicpagecontent_ { <div class="cicheading">Greek letter society</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
986
987package functionsgymnasium
988_cicpagecontent_ { <div class="cicheading">Gymnasium</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
989
990package functionsinfirmary
991_cicpagecontent_ { <div class="cicheading">Infirmary</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
992
993package functionslibrary
994_cicpagecontent_ { <div class="cicheading">Library</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
995
996package functionsmasterplancampus
997_cicpagecontent_ { <div class="cicheading">Master plan (campus)</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
998
999package functionsmasterplanlandscape
1000_cicpagecontent_ { <div class="cicheading">Master plan (landscape)</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
1001
1002package functionsmemorialsite
1003_cicpagecontent_ { <div class="cicheading">Memorial site</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
1004
1005package functionsmuseum
1006_cicpagecontent_ { <div class="cicheading">Museum</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
1007
1008package functionsobservatory
1009_cicpagecontent_ { <div class="cicheading">Observatory</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
1010
1011package functionsoldmain
1012_cicpagecontent_ { <div class="cicheading">Old main</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
1013
1014package functionsoutdoorspace
1015_cicpagecontent_ { <div class="cicheading">Outdoor space</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
1016
1017package functionspresidentshouse
1018_cicpagecontent_ { <div class="cicheading">President's house</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
1019
1020package functionsprivateresidence
1021_cicpagecontent_ { <div class="cicheading">Private residence</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
1022
1023package functionsresidencehall
1024_cicpagecontent_ { <div class="cicheading">Residence hall</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
1025
1026package functionsstadium
1027_cicpagecontent_ { <div class="cicheading">Stadium</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
1028
1029package functionsstudentunion
1030_cicpagecontent_ { <div class="cicheading">Student union</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
1031
1032package functionstheater
1033_cicpagecontent_ { <div class="cicheading">Theater</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
1034
1035package functionsother
1036_cicpagecontent_ { <div class="cicheading">Other</div><center>_cicstaticbrowserquicklinks_</center>_cicstaticbrowser_ }
1037
1038
1039
1040# ------------------------------------------------------------------------------------------
1041# DOCUMENT
1042# ------------------------------------------------------------------------------------------
1043
1044package document
1045
1046_navarrows_ {}
1047
1048_textheader_ {_style:cicheader_}
1049
1050_cicpagecontent_ {}
1051
1052_footer_ {_style:htmlfooter_}
1053
1054
1055
1056# ------------------------------------------------------------------------------------------
1057# QUERY
1058# ------------------------------------------------------------------------------------------
1059
1060package query
1061
1062_header_ {
1063_If_(_cgiargq_,_style:header_,_If_("_cgiargqst_" eq "1",_cicstatesearchheader_,_If_("_cgiargqre_" eq "1",_cicbibliographysearchheader_,_cicadvancedsearchheader_)))
1064}
1065
1066_cicjavascript_ {
1067<script type="text/javascript">
1068
1069_cicsimplejavascript_
1070_If_("_cgiargqst_" eq "1",_cicstatesearchjavascript_)
1071_If_("_cgiargqre_" eq "1",_cicbibliographysearchjavascript_)
1072_cicadvancedsearchjavascript_
1073
1074</script>
1075}
1076
1077_cicpagecontent_ {
1078_If_(_cgiargq_,_cicsearchresults_,_If_("_cgiargqst_" eq "1",_If_("_cgiargqrst_" eq "1",_cicstatesearchresults_,_cicstatesearchpage_),_If_("_cgiargqre_" eq "1",_cicbibliographysearchpage_,_cicadvancedsearchpage_)))
1079}
1080
1081_cicsearchresults_ {
1082<div class="cicheading">Search Results</div>
1083
1084<p>_resultline_</p>
1085}
1086
1087# What is displayed on the submit buttons
1088_textbeginsearch_ {Search}
1089
1090
1091
1092# ------------------------------------------------------------------------------------------
1093# QUERY (Quick Search)
1094# ------------------------------------------------------------------------------------------
1095
1096_cicsimplejavascript_ {
1097function initializeSimpleSearch()
1098\{
1099 document.SimpleQueryForm.txq.focus();
1100\}
1101
1102function onSimpleSearchFocus()
1103\{
1104 var txq_element = document.getElementById('search_query');
1105 if (txq_element.value == txq_element.defaultValue) \{
1106 txq_element.value = '';
1107 txq_element.className = 'inputfocus';
1108 \}
1109\}
1110
1111function onSimpleSearchBlur()
1112\{
1113 var txq_element = document.getElementById('search_query');
1114 if (txq_element.value == '') \{
1115 txq_element.value = txq_element.defaultValue;
1116 txq_element.className = 'inputblur';
1117 \}
1118\}
1119
1120function prepareSimpleSearch()
1121\{
1122 var txq_value = document.SimpleQueryForm.txq.value;
1123 document.SimpleQueryForm.fqv.value = txq_value.replace(",", "");
1124\}
1125}
1126
1127
1128_cicsimplequeryform_ {
1129<form name="SimpleQueryForm" method="get" action="_gwcgi_" onSubmit="prepareSimpleSearch();">
1130 <input type="hidden" name="a" value="q" />
1131 <input type="hidden" name="fqc" value="and" />
1132 <input type="hidden" name="fqf" value="ZZ" />
1133 <input type="hidden" name="fqv" value="" />
1134 <input type="text" name="txq" id="search_query" value="QUICK SEARCH" class="inputblur" onfocus="javascript: onSimpleSearchFocus();" onblur="javascript: onSimpleSearchBlur();" />
1135 <input type="hidden" name="m" value="-1" />
1136 <input type="submit" name="submit" id="search_submit" value="GO" />
1137</form>
1138}
1139
1140
1141
1142# ------------------------------------------------------------------------------------------
1143# QUERY (Search -> Institutions by State/Region)
1144# ------------------------------------------------------------------------------------------
1145
1146_cicstatesearchheader_ {
1147_style:cicheader_(onLoad="initializeStateSearch();")
1148}
1149
1150_cicstatesearchjavascript_ {
1151function initializeStateSearch()
1152\{
1153 if ("_cgiargqrst_" == "1") \{
1154 var stq_results = "";
1155 var stq_values = "_cgiargstq_".split(",").sort();
1156 var last_stq_value = "";
1157 for (var i = 0; i < stq_values.length; i++) \{
1158 // Avoid duplicates by checking this value is different from the last one
1159 if (stq_values[i] == last_stq_value) \{
1160 continue;
1161 \}
1162 last_stq_value = stq_values[i];
1163
1164 if (stq_values[i] == "AL") stq_results += '_states:cicstateALjs_';
1165 if (stq_values[i] == "AK") stq_results += '_states:cicstateAKjs_';
1166 if (stq_values[i] == "AZ") stq_results += '_states:cicstateAZjs_';
1167 if (stq_values[i] == "AR") stq_results += '_states:cicstateARjs_';
1168 if (stq_values[i] == "CA") stq_results += '_states:cicstateCAjs_';
1169 if (stq_values[i] == "CO") stq_results += '_states:cicstateCOjs_';
1170 if (stq_values[i] == "CT") stq_results += '_states:cicstateCTjs_';
1171 if (stq_values[i] == "DE") stq_results += '_states:cicstateDEjs_';
1172 if (stq_values[i] == "DC") stq_results += '_states:cicstateDCjs_';
1173 if (stq_values[i] == "FL") stq_results += '_states:cicstateFLjs_';
1174 if (stq_values[i] == "GA") stq_results += '_states:cicstateGAjs_';
1175 if (stq_values[i] == "HI") stq_results += '_states:cicstateHIjs_';
1176 if (stq_values[i] == "ID") stq_results += '_states:cicstateIDjs_';
1177 if (stq_values[i] == "IL") stq_results += '_states:cicstateILjs_';
1178 if (stq_values[i] == "IN") stq_results += '_states:cicstateINjs_';
1179 if (stq_values[i] == "IA") stq_results += '_states:cicstateIAjs_';
1180 if (stq_values[i] == "KS") stq_results += '_states:cicstateKSjs_';
1181 if (stq_values[i] == "KY") stq_results += '_states:cicstateKYjs_';
1182 if (stq_values[i] == "LA") stq_results += '_states:cicstateLAjs_';
1183 if (stq_values[i] == "ME") stq_results += '_states:cicstateMEjs_';
1184 if (stq_values[i] == "MD") stq_results += '_states:cicstateMDjs_';
1185 if (stq_values[i] == "MA") stq_results += '_states:cicstateMAjs_';
1186 if (stq_values[i] == "MI") stq_results += '_states:cicstateMIjs_';
1187 if (stq_values[i] == "MN") stq_results += '_states:cicstateMNjs_';
1188 if (stq_values[i] == "MS") stq_results += '_states:cicstateMSjs_';
1189 if (stq_values[i] == "MO") stq_results += '_states:cicstateMOjs_';
1190 if (stq_values[i] == "MT") stq_results += '_states:cicstateMTjs_';
1191 if (stq_values[i] == "NE") stq_results += '_states:cicstateNEjs_';
1192 if (stq_values[i] == "NV") stq_results += '_states:cicstateNVjs_';
1193 if (stq_values[i] == "NH") stq_results += '_states:cicstateNHjs_';
1194 if (stq_values[i] == "NJ") stq_results += '_states:cicstateNJjs_';
1195 if (stq_values[i] == "NM") stq_results += '_states:cicstateNMjs_';
1196 if (stq_values[i] == "NY") stq_results += '_states:cicstateNYjs_';
1197 if (stq_values[i] == "NC") stq_results += '_states:cicstateNCjs_';
1198 if (stq_values[i] == "ND") stq_results += '_states:cicstateNDjs_';
1199 if (stq_values[i] == "OH") stq_results += '_states:cicstateOHjs_';
1200 if (stq_values[i] == "OK") stq_results += '_states:cicstateOKjs_';
1201 if (stq_values[i] == "OR") stq_results += '_states:cicstateORjs_';
1202 if (stq_values[i] == "PA") stq_results += '_states:cicstatePAjs_';
1203 if (stq_values[i] == "RI") stq_results += '_states:cicstateRIjs_';
1204 if (stq_values[i] == "SC") stq_results += '_states:cicstateSCjs_';
1205 if (stq_values[i] == "SD") stq_results += '_states:cicstateSDjs_';
1206 if (stq_values[i] == "TN") stq_results += '_states:cicstateTNjs_';
1207 if (stq_values[i] == "TX") stq_results += '_states:cicstateTXjs_';
1208 if (stq_values[i] == "UT") stq_results += '_states:cicstateUTjs_';
1209 if (stq_values[i] == "VT") stq_results += '_states:cicstateVTjs_';
1210 if (stq_values[i] == "VA") stq_results += '_states:cicstateVAjs_';
1211 if (stq_values[i] == "WA") stq_results += '_states:cicstateWAjs_';
1212 if (stq_values[i] == "WV") stq_results += '_states:cicstateWVjs_';
1213 if (stq_values[i] == "WI") stq_results += '_states:cicstateWIjs_';
1214 if (stq_values[i] == "WY") stq_results += '_states:cicstateWYjs_';
1215 \}
1216
1217 if (stq_results != "") \{
1218 stq_results = '<table cellpadding="0" cellspacing="0" width="100%">' + stq_results + '<\\/table>';
1219 document.getElementById("stq_results").innerHTML = stq_results;
1220 \}
1221 else \{
1222 document.getElementById("stq_results").innerHTML = "<p>_textnodocs_<\\/p>";
1223 \}
1224 \}
1225\}
1226
1227function prepareStateSearch()
1228\{
1229 var stq_value = "";
1230 for (var i = 0; i < document.StateQueryForm.stc.options.length; i++) \{
1231 if (document.StateQueryForm.stc.options[i].selected == true) \{
1232 if (stq_value != "") stq_value += ",";
1233 stq_value += document.StateQueryForm.stc.options[i].value;
1234 \}
1235 \}
1236 document.StateQueryForm.stq.value = stq_value;
1237\}
1238
1239function selectRegion(region)
1240\{
1241 for (var i = 0; i < document.StateQueryForm.stc.options.length; i++) \{
1242 if (document.StateQueryForm.stc.options[i].text == region) \{
1243 document.StateQueryForm.stc.options[i].selected = true;
1244 break;
1245 \}
1246 \}
1247\}
1248
1249function clearSelection()
1250\{
1251 for (var i = 0; i < document.StateQueryForm.stc.options.length; i++) \{
1252 document.StateQueryForm.stc.options[i].selected = false;
1253 \}
1254\}
1255}
1256
1257_cicstatesearchpage_ {
1258<span class="cicheading">State Search</span>
1259
1260<table cellpadding="0" cellspacing="0" width="100%">
1261 <tr>
1262 <td valign="top">
1263 <img alt="US state map" src="_httpcollection_/images/usa_map-color.gif" usemap="#states"/>
1264 <map name="states">
1265 <area shape="rect" coords="524,286,551,313" href="javascript:selectRegion('Alabama')">
1266 <area shape="rect" coords="154,379,197,413" href="javascript:selectRegion('Alaska')">
1267 <area shape="rect" coords="202,248,237,280" href="javascript:selectRegion('Arizona')">
1268 <area shape="rect" coords="444,257,475,283" href="javascript:selectRegion('Arkansas')">
1269 <area shape="rect" coords="104,177,140,209" href="javascript:selectRegion('California')">
1270 <area shape="rect" coords="278,186,324,211" href="javascript:selectRegion('Colorado')">
1271 <area shape="rect" coords="690,146,712,161" href="javascript:selectRegion('Connecticut')">
1272 <area shape="rect" coords="677,183,701,196" href="javascript:selectRegion('Delaware')">
1273 <area shape="rect" coords="680,216,706,234" href="javascript:selectRegion('District%20of%20Columbia')">
1274 <area shape="rect" coords="604,352,628,376" href="javascript:selectRegion('Florida')">
1275 <area shape="rect" coords="564,280,598,303" href="javascript:selectRegion('Georgia')">
1276 <area shape="rect" coords=" 69,314, 97,333" href="javascript:selectRegion('Hawaii')">
1277 <area shape="rect" coords="197,103,228,123" href="javascript:selectRegion('Idaho')">
1278 <area shape="rect" coords="483,171,509,193" href="javascript:selectRegion('Illinois')">
1279 <area shape="rect" coords="521,169,545,189" href="javascript:selectRegion('Indiana')">
1280 <area shape="rect" coords="432,149,462,169" href="javascript:selectRegion('Iowa')">
1281 <area shape="rect" coords="371,201,404,223" href="javascript:selectRegion('Kansas')">
1282 <area shape="rect" coords="539,215,565,232" href="javascript:selectRegion('Kentucky')">
1283 <area shape="rect" coords="449,312,475,333" href="javascript:selectRegion('Louisiana')">
1284 <area shape="rect" coords="693, 54,719, 75" href="javascript:selectRegion('Maine')">
1285 <area shape="rect" coords="686,198,712,213" href="javascript:selectRegion('Maryland')">
1286 <area shape="rect" coords="715,111,743,128" href="javascript:selectRegion('Massachusetts')">
1287 <area shape="rect" coords="532,122,557,142" href="javascript:selectRegion('Michigan')">
1288 <area shape="rect" coords="418, 88,449,108" href="javascript:selectRegion('Minnesota')">
1289 <area shape="rect" coords="485,287,513,308" href="javascript:selectRegion('Mississippi')">
1290 <area shape="rect" coords="441,202,474,222" href="javascript:selectRegion('Missouri')">
1291 <area shape="rect" coords="258, 57,291, 80" href="javascript:selectRegion('Montana')">
1292 <area shape="rect" coords="358,156,390,173" href="javascript:selectRegion('Nebraska')">
1293 <area shape="rect" coords="153,159,185,179" href="javascript:selectRegion('Nevada')">
1294 <area shape="rect" coords="706, 95,732,109" href="javascript:selectRegion('New%20Hampshire')">
1295 <area shape="rect" coords="680,165,702,180" href="javascript:selectRegion('New%20Jersey')">
1296 <area shape="rect" coords="274,258,309,278" href="javascript:selectRegion('New%20Mexico')">
1297 <area shape="rect" coords="641,108,665,127" href="javascript:selectRegion('New%20York')">
1298 <area shape="rect" coords="616,229,643,248" href="javascript:selectRegion('North%20Carolina')">
1299 <area shape="rect" coords="353, 64,385, 83" href="javascript:selectRegion('North%20Dakota')">
1300 <area shape="rect" coords="557,165,587,181" href="javascript:selectRegion('Ohio')">
1301 <area shape="rect" coords="383,250,416,269" href="javascript:selectRegion('Oklahoma')">
1302 <area shape="rect" coords="128, 82,163,105" href="javascript:selectRegion('Oregon')">
1303 <area shape="rect" coords="614,145,643,165" href="javascript:selectRegion('Pennsylvania')">
1304 <area shape="rect" coords="703,133,719,146" href="javascript:selectRegion('Rhode%20Island')">
1305 <area shape="rect" coords="600,260,624,279" href="javascript:selectRegion('South%20Carolina')">
1306 <area shape="rect" coords="353,109,384,128" href="javascript:selectRegion('South%20Dakota')">
1307 <area shape="rect" coords="523,241,549,257" href="javascript:selectRegion('Tennessee')">
1308 <area shape="rect" coords="360,307,400,337" href="javascript:selectRegion('Texas')">
1309 <area shape="rect" coords="214,176,247,200" href="javascript:selectRegion('Utah')">
1310 <area shape="rect" coords="657, 55,680, 72" href="javascript:selectRegion('Vermont')">
1311 <area shape="rect" coords="616,202,642,217" href="javascript:selectRegion('Virginia')">
1312 <area shape="rect" coords="144, 35,177, 51" href="javascript:selectRegion('Washington')">
1313 <area shape="rect" coords="587,191,610,204" href="javascript:selectRegion('West%20Virginia')">
1314 <area shape="rect" coords="471,109,499,128" href="javascript:selectRegion('Wisconsin')">
1315 <area shape="rect" coords="269,119,305,144" href="javascript:selectRegion('Wyoming')">
1316
1317 <area shape="rect" coords=" 9,513,130,540" href="javascript:selectRegion('West')">
1318 <area shape="rect" coords="133,513,254,540" href="javascript:selectRegion('Mountain')">
1319 <area shape="rect" coords="258,513,378,540" href="javascript:selectRegion('Southwest')">
1320 <area shape="rect" coords="382,513,502,540" href="javascript:selectRegion('Midwest')">
1321 <area shape="rect" coords="506,513,626,540" href="javascript:selectRegion('Southeast')">
1322 <area shape="rect" coords="629,513,750,540" href="javascript:selectRegion('Northeast')">
1323 </map>
1324 </td>
1325 <td align="right" valign="top" style="padding-top: 30px;">
1326 <form name=StateQueryForm method=get action="_gwcgi_" onSubmit="prepareStateSearch();">
1327 <input type="hidden" name="a" value="q">
1328 <input type="hidden" name="qst" value="1">
1329 <input type="hidden" name="qrst" value="1">
1330 <input type="hidden" name="stq" value="">
1331 <select name="stc" multiple="true" style="width: 150px; height: 325px;">
1332 <option value="CT,DE,DC,ME,MD,MA,NH,NJ,NY,PA,RI,VT">Northeast</option>
1333 <option value="AL,AR,FL,GA,KY,LA,MS,NC,SC,TN,VA,WV">Southeast</option>
1334 <option value="IL,IN,IA,KS,MI,MN,MO,NE,ND,OH,SD,WI">Midwest</option>
1335 <option value="AZ,NM,OK,TX">Southwest</option>
1336 <option value="CO,ID,MT,UT,WY">Mountain</option>
1337 <option value="AK,CA,HI,NV,OR,WA" style="margin-bottom: 10px;">West</option>
1338 _cicstateoptions_
1339 </select>
1340
1341 <p><input type="submit" value="_textbeginsearch_" onClick="prepareStateSearch();"></p>
1342 </form>
1343 </td>
1344 </tr>
1345</table>
1346}
1347
1348_cicstatesearchresults_ {
1349<div class="cicheading">Search Results</div>
1350
1351<div id="stq_results"></div>
1352}
1353
1354# Shared between the "search institutions by state" and "advanced search" pages
1355_cicstateoptions_ {
1356 <option value="AL">Alabama</option>
1357 <option value="AK">Alaska</option>
1358 <option value="AZ">Arizona</option>
1359 <option value="AR">Arkansas</option>
1360 <option value="CA">California</option>
1361 <option value="CO">Colorado</option>
1362 <option value="CT">Connecticut</option>
1363 <option value="DE">Delaware</option>
1364 <option value="DC">District of Columbia</option>
1365 <option value="FL">Florida</option>
1366 <option value="GA">Georgia</option>
1367 <option value="HI">Hawaii</option>
1368 <option value="ID">Idaho</option>
1369 <option value="IL">Illinois</option>
1370 <option value="IN">Indiana</option>
1371 <option value="IA">Iowa</option>
1372 <option value="KS">Kansas</option>
1373 <option value="KY">Kentucky</option>
1374 <option value="LA">Louisiana</option>
1375 <option value="ME">Maine</option>
1376 <option value="MD">Maryland</option>
1377 <option value="MA">Massachusetts</option>
1378 <option value="MI">Michigan</option>
1379 <option value="MN">Minnesota</option>
1380 <option value="MS">Mississippi</option>
1381 <option value="MO">Missouri</option>
1382 <option value="MT">Montana</option>
1383 <option value="NE">Nebraska</option>
1384 <option value="NV">Nevada</option>
1385 <option value="NH">New Hampshire</option>
1386 <option value="NJ">New Jersey</option>
1387 <option value="NM">New Mexico</option>
1388 <option value="NY">New York</option>
1389 <option value="NC">North Carolina</option>
1390 <option value="ND">North Dakota</option>
1391 <option value="OH">Ohio</option>
1392 <option value="OK">Oklahoma</option>
1393 <option value="OR">Oregon</option>
1394 <option value="PA">Pennsylvania</option>
1395 <option value="RI">Rhode Island</option>
1396 <option value="SC">South Carolina</option>
1397 <option value="SD">South Dakota</option>
1398 <option value="TN">Tennessee</option>
1399 <option value="TX">Texas</option>
1400 <option value="UT">Utah</option>
1401 <option value="VT">Vermont</option>
1402 <option value="VA">Virginia</option>
1403 <option value="WA">Washington</option>
1404 <option value="WV">West Virginia</option>
1405 <option value="WI">Wisconsin</option>
1406 <option value="WY">Wyoming</option>
1407}
1408
1409
1410# ------------------------------------------------------------------------------------------
1411# QUERY (Search -> Bibliography Search)
1412# ------------------------------------------------------------------------------------------
1413
1414_cicbibliographysearchheader_ {
1415_style:cicheader_(onLoad="initializeBibliographySearch();")
1416}
1417
1418_cicbibliographysearchjavascript_ {
1419function initializeBibliographySearch()
1420\{
1421 document.BibliographyQueryForm.req.focus();
1422\}
1423
1424function prepareBibliographySearch()
1425\{
1426 var req_value = document.BibliographyQueryForm.req.value;
1427 document.BibliographyQueryForm.fqv.value = req_value.replace(",", "");
1428\}
1429
1430function initalizeAdvancedBibliographySearch()
1431\{
1432\}
1433
1434function prepareAdvancedBibliographySearch()
1435\{
1436 document.AdvancedBibliographyQueryForm.q.value = "";
1437
1438 for (var i = 0; i < document.AdvancedBibliographyQueryForm.abqv.length; i++) \{
1439 var abqv_value = document.AdvancedBibliographyQueryForm.abqv[i].value;
1440 if (abqv_value != "") \{
1441 var combiner = "&";
1442 if (i < (document.AdvancedBibliographyQueryForm.abqv.length - 1) && document.AdvancedBibliographyQueryForm.abqc[i].value == "or") \{
1443 combiner = "|";
1444 \}
1445 if (document.AdvancedBibliographyQueryForm.abqp[i].value == "1") \{
1446 abqv_value = '"' + abqv_value + '"';
1447 \}
1448 addQueryTerm(document.AdvancedBibliographyQueryForm.q, "[" + abqv_value + "]:" + document.AdvancedBibliographyQueryForm.abqi[i].value, combiner);
1449 \}
1450 \}
1451
1452 // Remove the trailing combiner
1453 document.AdvancedBibliographyQueryForm.q.value = removeFromEnd(document.AdvancedBibliographyQueryForm.q.value, " & ");
1454 document.AdvancedBibliographyQueryForm.q.value = removeFromEnd(document.AdvancedBibliographyQueryForm.q.value, " | ");
1455\}
1456}
1457
1458_cicabqline_ {
1459 <tr>
1460 <td style="white-space: nowrap;">
1461 <select name="abqi" onChange="prepareAdvancedBibliographySearch();">
1462 <option value="RE">General keyword</option>
1463 <option value="RR">Author keyword</option>
1464 <option value="RF">Title keyword</option>
1465 </select>
1466
1467 <select name="abqp" onChange="prepareAdvancedBibliographySearch();">
1468 <option value='0'>contains</option>
1469 <option value='1'>is</option>
1470 </select>
1471
1472 <input name='abqv' type='text' style='width: 450px'/>
1473
1474 <select name="abqc" onChange="prepareAdvancedBibliographySearch();">
1475 <option value="and">and</option>
1476 <option value="or">or</option>
1477 </select>
1478 </td>
1479 </tr>
1480}
1481
1482_cicabqlinenocombiner_ {
1483 <tr>
1484 <td style="white-space: nowrap;">
1485 <select name="abqi" onChange="prepareAdvancedBibliographySearch();">
1486 <option value="RE">General keyword</option>
1487 <option value="RR">Author keyword</option>
1488 <option value="RF">Title keyword</option>
1489 </select>
1490
1491 <select name="abqp" onChange="prepareAdvancedBibliographySearch();">
1492 <option value='0'>contains</option>
1493 <option value='1'>is</option>
1494 </select>
1495
1496 <input name='abqv' type='text' style='width: 450px'/>
1497 </td>
1498 </tr>
1499}
1500
1501_cicbibliographysearchpage_ {
1502<div class="cicheading">Bibliography Search</div>
1503_cicblankline_
1504<table>
1505 <tr>
1506 <td>
1507 <form name=BibliographyQueryForm method=get action="_gwcgi_" onSubmit="prepareBibliographySearch();">
1508 <input type="hidden" name="a" value="q" />
1509 <input type="hidden" name="fqc" value="and" />
1510
1511 <select name="fqf" onChange="prepareBibliographySearch();">
1512 <option value="RE">General keyword</option>
1513 <option value="RR">Author keyword</option>
1514 <option value="RF">Title keyword</option>
1515 </select>
1516
1517 <input type="hidden" name="fqv" value="" />
1518 <input name='req' type='text' style='width: 450px'/>
1519
1520 <input type="hidden" name="m" value="-1" />
1521 <input type="submit" value="_textbeginsearch_" onClick="prepareBibliographySearch();">
1522 </form>
1523 </td>
1524 </tr>
1525</table>
1526
1527<p>&nbsp;</p>
1528
1529<div class="cicsubheading">Advanced Search for References</div>
1530_cicblankline_
1531<form name="AdvancedBibliographyQueryForm" method="get" action="_gwcgi_" onSubmit="prepareAdvancedBibliographySearch();">
1532 <input type="hidden" name="a" value="q">
1533 <input type="hidden" name="q" value="">
1534 <input type="hidden" name="qt" value="1">
1535 <input type="hidden" name="qf" value="1">
1536 <input type="hidden" name="fqa" value="1">
1537 <input type="hidden" name="m" value="-1">
1538
1539 <table>
1540 _cicabqline_
1541 _cicabqline_
1542 _cicabqlinenocombiner_
1543
1544 <tr>
1545 <td>
1546 <div style="float:right"><input type="submit" value="_textbeginsearch_" onClick="prepareAdvancedBibliographySearch();"></div>
1547 </td>
1548 </tr>
1549 </table>
1550</form>
1551}
1552
1553
1554
1555# ------------------------------------------------------------------------------------------
1556# QUERY (Search -> Advanced Search)
1557# ------------------------------------------------------------------------------------------
1558
1559# Hide the "or enter a query directly" box
1560_advancedformextra_ {}
1561
1562# We have our own Javascript for the form searching
1563_formfunctions_ {}
1564
1565# Hide the "search and display results in ... order" text
1566_textformselect_ {}
1567
1568_cicadvancedsearchheader_ {
1569_style:cicheader_(onLoad="initializeAdvancedSearch();")
1570}
1571
1572_cicadvancedsearchpage_ {
1573<div class="cicheading">Advanced Search</div>
1574
1575<noscript>
1576<p><b>_textnojsformwarning_</b></p>
1577</noscript>
1578
1579_cicblankline_
1580<center>
1581 <form name="QueryForm" method="get" action="_gwcgi_">
1582 _advancedforms_
1583 </form>
1584</center>
1585}
1586
1587_cicaqvdefault_ {<input id='aqv_1_field' name='aqv' type='text' style='width: 450px'/>}
1588_cicaqvtypeofplace_ {<select id='aqv_1_field' name='aqv' style='width: 450px'><option value='Individual building'>Individual building<\\/option><option value='Landscape site'>Landscape site<\\/option><option value='Campus arrangement'>Campus arrangement<\\/option><option value='Building group'>Building group<\\/option><\\/select>}
1589
1590_cicaqline_ {
1591<tr>
1592 <td colspan="3" style="white-space: nowrap;">
1593 <center>
1594 <select name="aqi" onChange="changedAQI();">
1595 <option value="">Keyword</option>
1596 <option value="PL">Type of place</option>
1597 <option value="IN">Institution</option>
1598 <option value="AR">Designer</option>
1599 </select>
1600 <input type="hidden" name="aqib" value="">
1601
1602 <select name="aqp" onChange="prepareAdvancedSearch();">
1603 <option value='0'>contains</option>
1604 <option value='1'>is</option>
1605 </select>
1606
1607 <span id="aqv_1_">
1608 _cicaqvdefault_(_1_)
1609 </span>
1610
1611 <select name="aqc" onChange="prepareAdvancedSearch();">
1612 <option value="and">and</option>
1613 <option value="or">or</option>
1614 </select>
1615 </center>
1616 </td>
1617</tr>
1618}
1619
1620_advancedforms_ {
1621<input type="hidden" name="a" value="q">
1622<input type="hidden" name="q" value="">
1623<input type="hidden" name="qt" value="1">
1624<input type="hidden" name="qf" value="1">
1625<input type="hidden" name="fqa" value="1">
1626<input type="hidden" name="m" value="-1">
1627
1628<table>
1629_cicaqline_(0)
1630_cicaqline_(1)
1631_cicaqline_(2)
1632
1633<tr>
1634 <td colspan="3">&nbsp;</td>
1635</tr>
1636
1637<tr>
1638 <td valign="top"><center><b>Function:</b></center></td>
1639 <td valign="top"><center><b>Time period:</b></center></td>
1640 <td valign="top"><center><b>Style:</b></center></td>
1641</tr>
1642
1643<tr>
1644 <!-- Function: Functions metadata, index FU -->
1645 <td valign="top">
1646 <select name="fuq" onChange="prepareAdvancedSearch();" size="10" multiple="true" style="width: 225px;">
1647 <option value="academic department building">academic department building</option>
1648 <option value="administration">administration</option>
1649 <option value="admissions office">admissions office</option>
1650 <option value="alumni center">alumni center</option>
1651 <option value="arboretum">arboretum</option>
1652 <option value="archaeological site">archaeological site</option>
1653 <option value="auditorium">auditorium</option>
1654 <option value="bell tower">bell tower</option>
1655 <option value="chapel">chapel</option>
1656 <option value="classrooms">classrooms</option>
1657 <option value="debating society">debating society</option>
1658 <option value="dining hall">dining hall</option>
1659 <option value="facility management building">facility management building</option>
1660 <option value="faculty offices">faculty offices</option>
1661 <option value="gardens">gardens (planned)</option>
1662 <option value="Greek letter society">Greek letter society</option>
1663 <option value="gymnasium">gymnasium</option>
1664 <option value="infirmary">infirmary</option>
1665 <option value="library">library</option>
1666 <option value="master plan campus">master plan (campus)</option>
1667 <option value="master plan landscape">master plan (landscape)</option>
1668 <option value="memorial site">memorial site</option>
1669 <option value="museum">museum</option>
1670 <option value="observatory">observatory</option>
1671 <option value="old main">old main</option>
1672 <option value="outdoor space">outdoor space</option>
1673 <option value="president's house">president's house</option>
1674 <option value="private residence">private residence</option>
1675 <option value="residence hall">residence hall</option>
1676 <option value="stadium">stadium</option>
1677 <option value="student union">student union</option>
1678 <option value="theatre">theatre</option>
1679 <option value="other">other</option>
1680 </select>
1681 </td>
1682
1683 <!-- Time period: Time_period metadata, index TM -->
1684 <td valign="top">
1685 <select name="tmq" onChange="prepareAdvancedSearch();" size="10" multiple="true" style="width: 225px;">
1686 <option value="pre 1800">pre-1800</option>
1687 <option value="1800 1850">1800-1850</option>
1688 <option value="1850 1900">1850-1900</option>
1689 <option value="1900 1945">1900-1945</option>
1690 <option value="1945 1995">1945-1995</option>
1691 <option value="post 1995">post-1995</option>
1692 </select>
1693 </td>
1694
1695 <!-- Style: Style metadata, index SY -->
1696 <td valign="top">
1697 <select name="syq" onChange="prepareAdvancedSearch();" size="10" multiple="true" style="width: 225px;">
1698 <option value="American colonial">American colonial</option>
1699 <option value="Federal">Federal</option>
1700 <option value="Greek revival">Greek revival</option>
1701 <option value="Italianate">Italianate</option>
1702 <option value="Gothic revival">Gothic revival</option>
1703 <option value="Romanesque revival">Romanesque revival</option>
1704 <option value="Victorian">Victorian</option>
1705 <option value="Beaux arts classicism">Beaux-Arts classicism</option>
1706 <option value="Colonial revival">Colonial revival</option>
1707 <option value="Mission Mission revival">Mission/Mission revival</option>
1708 <option value="Modern pre WWII">Modern/pre-World War II</option>
1709 <option value="Modern post WWII">Modern/post-World War II</option>
1710 <option value="Postmodern">Postmodern</option>
1711 <option value="Contemporary">Contemporary</option>
1712 <option value="Regionalist Vernacular">Regionalist/Vernacular</option>
1713 <option value="Other">Other</option>
1714 </select>
1715 </td>
1716</tr>
1717
1718<tr>
1719 <td colspan="3">&nbsp;</td>
1720</tr>
1721
1722<tr>
1723 <td valign="top"><center><b>Materials:</b></center></td>
1724 <td valign="top"><center><b>Designation:</b></center></td>
1725 <td valign="top"><center><b>State:</b></center></td>
1726</tr>
1727
1728<tr>
1729 <!-- Materials: Materials metadata, index MA -->
1730 <td valign="top">
1731 <select name="maq" onChange="prepareAdvancedSearch();" size="10" multiple="true" style="width: 225px;">
1732 <option value="aluminium siding">aluminium siding</option>
1733 <option value="ashlar">ashlar</option>
1734 <option value="asphalt">asphalt</option>
1735 <option value="bluestone">bluestone</option>
1736 <option value="brick">brick</option>
1737 <option value="brownstone">brownstone</option>
1738 <option value="cedar">cedar</option>
1739 <option value="cement">cement</option>
1740 <option value="cinderblock">cinderblock</option>
1741 <option value="clapboard">clapboard</option>
1742 <option value="clay block">clay block</option>
1743 <option value="copper">copper</option>
1744 <option value="cypress">cypress</option>
1745 <option value="dolomite">dolomite</option>
1746 <option value="fiberglass">fiberglass</option>
1747 <option value="fieldstone">fieldstone</option>
1748 <option value="flagstone">flagstone</option>
1749 <option value="foam">foam</option>
1750 <option value="gneiss">gneiss</option>
1751 <option value="granite">granite</option>
1752 <option value="gypsum block">gypsum block</option>
1753 <option value="ignimbrite">ignimbrite</option>
1754 <option value="lathe and plaster">lathe and plaster</option>
1755 <option value="limestone">limestone</option>
1756 <option value="logs">logs</option>
1757 <option value="marble">marble</option>
1758 <option value="masonry">masonry</option>
1759 <option value="plaster">plaster</option>
1760 <option value="quartzite">quartzite</option>
1761 <option value="rubber">rubber</option>
1762 <option value="sandstone">sandstone</option>
1763 <option value="schist">schist</option>
1764 <option value="slate">slate</option>
1765 <option value="steel">steel</option>
1766 <option value="stone">stone</option>
1767 <option value="stucco">stucco</option>
1768 <option value="terra cotta">terra cotta</option>
1769 <option value="tile">tile</option>
1770 <option value="wood">wood</option>
1771 </select>
1772 </td>
1773
1774 <!-- Designation: Designation metadata, index DE -->
1775 <td valign="top">
1776 <select name="deq" onChange="prepareAdvancedSearch();" size="10" multiple="true" style="width: 225px;">
1777 <option value="National Register">National Register</option>
1778 <option value="National Historic Landmark">National Historic Landmark</option>
1779 <option value="HABS HAER">HABS/HAER</option>
1780 <option value="Local state">Local and state designations</option>
1781 </select>
1782 </td>
1783
1784 <!-- State: State metadata, index ST -->
1785 <td valign="top">
1786 <select name="stq" onChange="prepareAdvancedSearch();" size="10" multiple="true" style="width: 225px;">
1787 <option value="Northeast">Northeast</option>
1788 <option value="Southeast">Southeast</option>
1789 <option value="Midwest">Midwest</option>
1790 <option value="Southwest">Southwest</option>
1791 <option value="Mountain">Mountain</option>
1792 <option value="West" style="margin-bottom: 10px">West</option>
1793 _cicstateoptions_
1794 </select>
1795 </td>
1796</tr>
1797
1798<tr>
1799 <td colspan="3">
1800 <div style="float:right"><input type="submit" value="_textbeginsearch_" onClick="prepareAdvancedSearch();"></div>
1801 </td>
1802</tr>
1803
1804</table>
1805}
1806
1807_cicadvancedsearchjavascript_ {
1808function initializeAdvancedSearch()
1809\{
1810 for (var i = 0; i < document.QueryForm.aqi.length; i++) \{
1811 if (document.QueryForm.aqi[i].value == "PL") \{
1812 document.QueryForm.aqp[i].disabled = true;
1813 document.QueryForm.aqp[i].options[1].selected = true;
1814 document.getElementById("aqv" + i).innerHTML = "_cicaqvtypeofplace_(" + i + ")";
1815 \}
1816 \}
1817
1818 prepareAdvancedSearch();
1819\}
1820
1821function changedAQI()
1822\{
1823 for (var i = 0; i < document.QueryForm.aqi.length; i++) \{
1824 if (document.QueryForm.aqi[i].value != document.QueryForm.aqib[i].value) \{
1825 if (document.QueryForm.aqi[i].value == "PL") \{
1826 document.QueryForm.aqp[i].disabled = true;
1827 document.QueryForm.aqp[i].options[1].selected = true;
1828 document.getElementById("aqv" + i).innerHTML = "_cicaqvtypeofplace_(" + i + ")";
1829 \}
1830 else \{
1831 document.QueryForm.aqp[i].disabled = false;
1832 document.getElementById("aqv" + i).innerHTML = "_cicaqvdefault_(" + i + ")";
1833 \}
1834
1835 document.QueryForm.aqib[i].value = document.QueryForm.aqi[i].value;
1836 \}
1837 \}
1838
1839 prepareAdvancedSearch();
1840\}
1841
1842function prepareAdvancedSearch()
1843\{
1844 document.QueryForm.q.value = "";
1845
1846 for (var aqv_i = 0; aqv_i < document.QueryForm.aqv.length; aqv_i++) \{
1847 var aqv_value = document.QueryForm.aqv[aqv_i].value;
1848 if (aqv_value != "") \{
1849 var real_index = /aqv([0-9]+)field/.exec(document.QueryForm.aqv[aqv_i].id)[1];
1850 var combiner = "&";
1851 if (document.QueryForm.aqc[real_index].value == "or") \{
1852 combiner = "|";
1853 \}
1854 if (document.QueryForm.aqp[real_index].value == "1") \{
1855 aqv_value = '"' + aqv_value + '"';
1856 \}
1857 addQueryTerm(document.QueryForm.q, "[" + aqv_value + "]:" + document.QueryForm.aqi[real_index].value, combiner);
1858 \}
1859 \}
1860
1861 document.QueryForm.q.value += "(";
1862 addIndexValue(document.QueryForm.q, document.QueryForm.fuq, "FU", "&");
1863 addIndexValue(document.QueryForm.q, document.QueryForm.tmq, "TM", "&");
1864 addIndexValue(document.QueryForm.q, document.QueryForm.syq, "SY", "&");
1865 addIndexValue(document.QueryForm.q, document.QueryForm.maq, "MA", "&");
1866 addIndexValue(document.QueryForm.q, document.QueryForm.deq, "DE", "&");
1867 addIndexValue(document.QueryForm.q, document.QueryForm.stq, "ST", "&");
1868 document.QueryForm.q.value = removeFromEnd(document.QueryForm.q.value, " & ");
1869 document.QueryForm.q.value = removeFromEnd(document.QueryForm.q.value, " | ");
1870 document.QueryForm.q.value += ")";
1871
1872 // Remove the trailing combiner
1873 document.QueryForm.q.value = removeFromEnd(document.QueryForm.q.value, "()");
1874 document.QueryForm.q.value = removeFromEnd(document.QueryForm.q.value, " & ");
1875 document.QueryForm.q.value = removeFromEnd(document.QueryForm.q.value, " | ");
1876 // alert(document.QueryForm.q.value);
1877\}
1878
1879function addQueryTerm(query_field_reference, index_value, combiner)
1880\{
1881 if (index_value != "") \{
1882 query_field_reference.value += "(" + index_value + ") " + combiner + " ";
1883 \}
1884\}
1885
1886function addIndexValue(query_field_reference, select_reference, index_code, combiner)
1887\{
1888 var index_value = "";
1889 for (var i = 0; i < select_reference.options.length; i++) \{
1890 if (select_reference.options[i].selected) \{
1891 index_value += ((index_value != "") ? " " + combiner + " " : "");
1892 index_value += '["' + select_reference.options[i].value + '"]:' + index_code;
1893 \}
1894 \}
1895 addQueryTerm(query_field_reference, index_value, "&");
1896\}
1897
1898function removeFromEnd(source_string, offender)
1899\{
1900 if (source_string.length < offender.length) \{
1901 return source_string;
1902 \}
1903
1904 if (source_string.substring(source_string.length - offender.length, source_string.length) != offender) \{
1905 return source_string;
1906 \}
1907
1908 return source_string.substring(0, source_string.length - offender.length);
1909\}
1910}
1911
1912_pagefooterextra_ {
1913_cicblankline_
1914<table cellspacing="0" cellpadding="0" width="100%">
1915<tr>
1916<td align="left">_If_(_prevfirst_,<a href="_gwcgi_?e=_compressedoptions_&amp;a=q&amp;r=_prevfirst_">_textmatches__prevfirst_ - _prevlast_</a>)</td>
1917<td align="right">_If_(_nextfirst_,<a href="_gwcgi_?e=_compressedoptions_&amp;a=q&amp;r=_nextfirst_">_textmatches__nextfirst_ - _nextlast_</a>)</td>
1918</tr>
1919</table>
1920}
1921
1922
1923
1924# ------------------------------------------------------------------------------------------
1925# ANYLINK MENU
1926# ------------------------------------------------------------------------------------------
1927
1928package anylink
1929
1930_anylinkjavascript_ {
1931/***********************************************
1932* AnyLink Drop Down Menu- © Dynamic Drive (www.dynamicdrive.com)
1933* This notice MUST stay intact for legal use
1934* Visit http://www.dynamicdrive.com/ for full source code
1935***********************************************/
1936
1937/////No further editting needed
1938
1939var ie4=document.all
1940var ns6=document.getElementById&&!document.all
1941
1942if (ie4||ns6) \{
1943document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"><\\/div>')
1944/* Change to fix IE problem with select boxes, as described at http://dotnetjunkies.com/WebLog/jking/archive/category/139.aspx */
1945document.write('<iframe id="dropmenuiframe" style="display:none; position: absolute; background-color: white; left: 0px; top: 0px" src="javascript:false" frameBorder="0" scrolling="no"><\\/iframe>')
1946\}
1947
1948function getposOffset(what, offsettype)\{
1949var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
1950var parentEl=what.offsetParent;
1951while (parentEl!=null)\{
1952totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
1953parentEl=parentEl.offsetParent;
1954\}
1955return totaloffset;
1956\}
1957
1958
1959function showhide(obj, e, visible, hidden, menuwidth)\{
1960if (ie4||ns6)
1961dropmenuobj.style.left = "-500px";
1962dropmenuobj.style.top = "-500px";
1963if (menuwidth!="")\{
1964dropmenuobj.widthobj=dropmenuobj.style
1965dropmenuobj.widthobj.width=menuwidth
1966\}
1967if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
1968obj.visibility=visible
1969else if (e.type=="click")
1970obj.visibility=hidden
1971\}
1972
1973function iecompattest()\{
1974return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
1975\}
1976
1977function clearbrowseredge(obj, whichedge)\{
1978var edgeoffset=0
1979if (whichedge=="rightedge")\{
1980var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
1981dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
1982if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
1983edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
1984\}
1985else\{
1986var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset
1987var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
1988dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
1989if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure)\{ //move up?
1990edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
1991if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either?
1992edgeoffset=dropmenuobj.y+obj.offsetHeight-topedge
1993\}
1994\}
1995return edgeoffset
1996\}
1997
1998function populatemenu(what)\{
1999if (ie4||ns6)
2000dropmenuobj.innerHTML=what.join("")
2001\}
2002
2003
2004function dropdownmenu(obj, e, menucontents, menuwidth)\{
2005if (window.event) event.cancelBubble=true
2006else if (e.stopPropagation) e.stopPropagation()
2007clearhidemenu()
2008dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
2009populatemenu(menucontents)
2010
2011if (ie4||ns6)\{
2012 showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)
2013 dropmenuobj.x=getposOffset(obj, "left")
2014 dropmenuobj.y=getposOffset(obj, "top")
2015 dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
2016 dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
2017 /* Change to fix IE problem with select boxes, as described at http://dotnetjunkies.com/WebLog/jking/archive/category/139.aspx */
2018 iframeobj = document.getElementById("dropmenuiframe");
2019 iframeobj.style.left = dropmenuobj.style.left;
2020 iframeobj.style.top = dropmenuobj.style.top;
2021 iframeobj.style.width = dropmenuobj.style.width;
2022 iframeobj.style.zIndex = 99;
2023 if (ie4) \{
2024 iframeobj.style.height = dropmenuobj.offsetHeight;
2025 iframeobj.style.display = "block";
2026 \}
2027\}
2028
2029return clickreturnvalue()
2030\}
2031
2032function clickreturnvalue()\{
2033if (ie4||ns6) return false
2034else return true
2035\}
2036
2037function contains_ns6(a, b) \{
2038while (b.parentNode)
2039if ((b = b.parentNode) == a)
2040return true;
2041return false;
2042\}
2043
2044function dynamichide(e)\{
2045if (ie4&&!dropmenuobj.contains(e.toElement))
2046delayhidemenu()
2047else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
2048delayhidemenu()
2049\}
2050
2051function hidemenu(e)\{
2052if (typeof dropmenuobj!="undefined")\{
2053if (ie4||ns6)
2054dropmenuobj.style.visibility="hidden"
2055/* Change to fix IE problem with select boxes, as described at http://dotnetjunkies.com/WebLog/jking/archive/category/139.aspx */
2056iframeobj.style.display = "none"
2057\}
2058\}
2059
2060function delayhidemenu()\{
2061if (ie4||ns6)
2062delayhide=setTimeout("hidemenu()",disappeardelay)
2063\}
2064
2065function clearhidemenu()\{
2066if (typeof delayhide!="undefined")
2067clearTimeout(delayhide)
2068\}
2069
2070if (hidemenu_onclick=="yes")
2071document.onclick=hidemenu
2072}
Note: See TracBrowser for help on using the repository browser.