-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaterial_request.php
More file actions
341 lines (264 loc) · 14.3 KB
/
material_request.php
File metadata and controls
341 lines (264 loc) · 14.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
<?php
ob_start();
include ("functions.php");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Material Purchase Suggestion Form</title>
<link rel="stylesheet" type="text/css" media="all" href="CSS/formScreen.css" />
<link rel="stylesheet" type="text/css" media="all" href="CSS/form_library_style.css" />
<link rel="stylesheet" type="text/css" media="all" href="phpMM.css" />
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script type="text/javascript" src="scripts/form_display.js"></script>
<style>
.hidden
{
display:none;
}
</style>
</head>
<body>
<div id="thinMarquee"><h1 class="thin1"><a href="http://library.pratt.edu/">Pratt Institute Libraries</a></h1></div>
<div class="headerBar">
<div class="headerNav">
<ul class="tabs">
<li><a href="/about" title="">About</a></li>
<li><a class="active" href="/services" title="">Services</a></li>
<li><a href="/find_resources" title="">Find Resources</a></li>
<li><a href="/research_assistance" title="">Research Help</a></li>
</ul>
</div><!-- close HeaderNav DIV -->
<div class="searchBar">
<a href="/research_assistance/ask-a-librarian/">Ask Us</a>
<a class="last" href="http://cat.pratt.edu/" title="">PrattCat</a>
<form method="post" action="http://library.pratt.edu/" >
<div class='hiddenFields'>
<input type="hidden" name="ACT" value="19" />
<input type="hidden" name="XID" value="110b7a7f7f43a27ee4444450d9ff845a25c6a058" />
<input type="hidden" name="RP" value="search&#47;index" />
<input type="hidden" name="NRP" value="search&#47;noresults" />
<input type="hidden" name="RES" value="20" />
<input type="hidden" name="status" value="" />
<input type="hidden" name="weblog" value="" />
<input type="hidden" name="search_in" value="entries" />
<input type="hidden" name="where" value="exact" />
<input type="hidden" name="site_id" value="1" />
</div>
<p><input type="text" name="keywords" class="text" value="" maxlength="100" /></p>
<p><input type="submit" name="search" class="search" value="Search Site" /></p>
<input type="hidden" name="show_future_entries" id="field_show_future_entries" value="yes">
</form>
</div><!-- close searchBar DIV -->
</div><!-- close headerBar DIV -->
<div id="container" class="wrapper">
<div id="formContent">
<h1>Recommend a Library Purchase</h1>
<p>The Pratt Institute Libraries welcomes suggestions for material purchases which support the teaching, study, and research at the Institute. Budgetary considerations and the Library Collection Development Policy are taken into account for each request. All suggestions will be reviewed by the appropriate <a href="http://library.pratt.edu/research_assistance/department_liaisons/">subject librarian</a> and you will be notified of their decision.</p>
<p>Before submitting a suggestion, please check the online library catalog, <a href="http://cat.pratt.edu/">PrattCat</a> to see if the material you need is already owned by Pratt Institute or on order. </p>
<!-- BEGIN FORM -->
<form name="validationcheck" action="material_request_result.php" method="POST">
<h2>Contact Information</h2>
<div id="patron">
<fieldset>
<label for="name">Your Name *</label>
<input type="text" name="name" size="32" /><br />
<label for="email">E-Mail Address *</label>
<input type="text" name="email" size="32" /><br />
<label for="prattID">Pratt ID Number</label>
<input type="text" name="prattID" size="32" /><br />
<label for="people">Student, Faculty, Staff, or Other</label>
<select name="people">
<option value="faculty">Faculty</option>
<option value="student">Student</option>
<option value="staff">Staff</option>
<option value="other">Other</option>
</select>
<label for="department">Department</label>
<input type="text" name="department" size="32" /><br />
</fieldset>
</div><!-- close patron div -->
<div id="course_reserves">
<fieldset>
<label for="reserve">Is this item for course reserve? *</label>
<select name="reserve" id="reserve" >
<option value="">Select</option>
<option value="yesReserve">Yes</option>
<option value="noReserve">No</option>
</select>
</fieldset>
<div class="hidden" id="details_yesReserve">
<fieldset>
<h2>Purchase and Course Reserves Request</h2>
<h3>Course Information</h3>
<label for="semester">Semester course taught *</label>
<input type="text" name="semester" size="32" /><br />
<label for="cyear">Year course taught *</label>
<input type="text" name="cyear" size="32" /><br />
<label for="cnum">Course number *</label>
<input type="text" name="cnum" size="32" /><br />
<label for="cname">Course name *</label>
<input type="text" name="cname" size="32" /><br />
<h3>Item Information</h3>
<h4>Each reserve item request requires a <strong>full citation</strong> for copyright compliance. Lack of a full citation will slow down the processing of placing reserve items. Please provide the following information:</h4>
<p><strong>For books:</strong> Book title, author/editor(s), publisher, edition, publication year, ISBN and call number and location if owned by Pratt.</p>
<p><strong>For book chapters:</strong> Book title, book author/editor(s), chapter title, publisher, edition, publication year, ISBN, <strong>pages
of the chapter being placed and total number of pages</strong>.</p>
<p><strong>For articles:</strong>
Journal name, full article title, author(s), volume, number, ISSN, publication date and pages</p>
<label for='citation1'>Full citation for item 1: *</label>
<input type="text" name="citation1" size="150" /><br />
<label for='additional'>Would you like to place additional items on reserve?</label>
<select id="additional">
<option value=''>Select</option>
<option value='noMore'>No</option>
<option value='yesMore'>Yes</option>
</select>
<br />
<div class="hidden" id="details_yesMore">
<fieldset>
<label for='citation2'>Full citation for item 2:</label>
<input type='text' name='citation2' size='150' /><br />
<label for='citation3'>Full citation for item 3:</label>
<input type='text' name='citation3' size='150' /><br />
<label for='citation4'>Full citation for item 4:</label>
<input type='text' name='citation4' size='150' /><br />
<label for='citation5'>Full citation for item 5:</label>
<input type='text' name='citation5' size='150' /><br />
<label for='citation6'>Full citation for item 6:</label>
<input type='text' name='citation6' size='150' /><br />
<label for='citation7'>Full citation for item 7:</label>
<input type='text' name='citation7' size='150' /><br />
<label for='citation8'>Full citation for item 8:</label>
<input type='text' name='citation8' size='150' /><br />
<label for='citation9'>Full citation for item 9:</label>
<input type='text' name='citation9' size='150' /><br />
<label for='citation10'>Full citation for item 10:</label>
<input type='text' name='citation10' size='150' /><br />
</fieldset>
</div>
<label for='location'>Where should the item be placed on reserve? *</label>
<select name="location">
<option value=''>Select campus library</option>
<option value='BK'>Brooklyn</option>
<option value='MA'>Manhattan</option>
</select>
<br />
<br />
<h3>Instructor Information</h3>
<label for='phone'>Instructor's Phone*</label>
<input type='text' name='phone' size='32'/><br />
<label for='instructName'>Instructor's Name</label>
<input type='text' name='instructName' size='32'/> <br />
<label for='instructEmail'>Instructor's Email (if you are submitting on behalf of an instructor)</label>
<input type='text' name='instructEmail' size='32'/><br />
<label for="instructorDepartment">Instructor's Department (if you are submitting on behalf of an instructor)</label>
<input type="text" name="instructorDepartment" size="32" /><br />
<label for="instructorStatement">I, (type in your name) certify that my reserve requests abide by <a href="http://www.ala.org/advocacy/copyright/fairuse/fairuseandelectronicreserves" >copyright and fair use guidelines</a>. *</label>
<input type="text" name="instructorStatement" size="32" /><br />
</fieldset>
</div>
<div class="hidden" id="details_noReserve">
<fieldset>
<label for='matType'>Material Type *</label>
<select name="matType" id="matType">
<option value=''>Select a material type</option>
<option value='book'>Book</option>
<option value='periodical'>Periodical Subscription</option>
<option value='electronic'>Electronic Resource</option>
<option value='video'>Video</option>
</select>
</fieldset>
<div class="hidden" id="details_book">
<fieldset>
<h2>Purchase Request - Book</h2>
<label for='bookAuthor'>Author(s)/Editor(s) *</label>
<input type='text' name='bookAuthor' size='32'/><br />
<label for='bookTitle'>Title *</label>
<input type='text' name='bookTitle' size='32'/><br />
<label for='bookPublisher'>Publisher</label>
<input type='text' name='bookPublisher' size='32'/><br />
<label for='bookYear'>Year of Publication</label>
<input type='text' name='bookYear' size='32'/><br />
<label for='bookEdition'>Edition</label>
<input type='text' name='bookEdition' size='32'/>
<label for='ISBN'>ISBN</label>
<input type='text' name='ISBN' size='32'/><br />
<label for='bookPrice'>Price</label>
<input type='text' name='bookPrice' size='32'/><br />
</fieldset>
</div><!--close div hidden book-->
<div class="hidden" id="details_periodical">
<fieldset>
<h2>Purchase Request - Periodical Subscription</h2>
<label for='perTitle'>Title *</label>
<input type='text' name='perTitle' size='32'/><br />
<label for='perPublisher'>Publisher</label>
<input type='text' name='perPublisher' size='32'/><br />
<label for='perFrequency'>Frequency of Publication</label>
<input type='text' name='perFrequency' size='32'/><br />
<label for='perISSN'>ISSN</label>
<input type='text' name='perISSN' size='32'/><br />
<label for='perPrice'>Price</label>
<input type='text' name='perPrice' size='32'/><br />
</fieldset>
</div><!--close div hidden periodical-->
<div class="hidden" id="details_electronic">
<fieldset>
<h2>Purchase Request - Electronic Resource</h2>
<label for='erTitle'>Title *</label>
<input type='text' name='erTitle' size='32'/><br />
<label for='erPublisher'>Publisher</label>
<input type='text' name='erPublisher' size='32'/><br />
<label for='erFrequency'>Frequency of Publication</label>
<input type='text' name='erFrequency' size='32'/><br />
<label for='erISSN'>ISSN</label>
<input type='text' name='erISSN' size='32'/><br />
<label for='erPrice'>Price</label>
<input type='text' name='erPrice' size='32'/><br />
</fieldset>
</div><!--close div hidden electronic-->
<div class="hidden" id="details_video">
<fieldset>
<h2>Purchase Suggestions - Video</h2>
<label for='videoFormat'>Format *</label>
<select name='videoFormat'>
<option value=''>Select</option>
<option value='DVD'>DVD</option>
<option value='VHS'>VHS</option>
<option value='16MM'>16MM</option>
<option value='other'>other</option>
</select>
<label for='videoTitle'>Title *</label>
<input type='text' name='videoTitle' size='32'/><br />
<label for='videoDirector'>Director</label>
<input type='text' name='videoDirector' size='32'/><br />
<label for='videoPublisher'>Publisher</label>
<input type='text' name='videoPublisher' size='32'/><br />
<label for='videoYear'>Year</label>
<input type='text' name='videoYear' size='32'/><br />
</fieldset>
</div><!--close div hidden video-->
<label for='curriculum'>How does the item support teaching, study, or research at Pratt?</label>
<input type='text' name='curriculum' size='200'/><br />
<label for='notify'>Would you like to be notified when the item arrives?</label>
<select name="notify">
<option value=''>Select</option>
<option value='yes'>Yes</option>
<option value='no'>No</option>
</select>
</fieldset>
</div>
</div>
<div id="buttons">
<fieldset class="center">
<input type="submit" value="Submit Request" />
<input type="reset" value="Clear and Restart" />
</fieldset>
</div>
</form>
</div><!--close content div-->
</div><!-- close container div-->
</body>
</html>