--- /dev/null
+/* grab the config from the config script */
+var config = getItemConfig();
+var itemForm = (marcXMLDoc) ? extractFixedField(marcXMLDoc,'Form') : "";
+
+/* Set the defaults for books and equipment for most patron types */
+result.durationRule = '6_weeks_3_renew';
+result.recurringFinesRule = 'free';
+result.maxFine = 'NOSM_daily';
+
+if (copy.circ_modifier == 'RESERVE 4 HOUR') {
+ result.durationRule = '4_hours_3_renew';
+ result.recurringFinesRule = 'free';
+}
+
+if (copy.circ_modifier == 'RESERVE 1 DAY') {
+ result.durationRule = '1_day_3_renew';
+ result.recurringFinesRule = 'free';
+}