Bug 5422: Separate state field for patron's addresses
[srvgit] / koha-tmpl / intranet-tmpl / prog / en / modules / members / memberentrygen.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Patrons &rsaquo; 
3 <!-- TMPL_IF NAME="opadd" -->Add<!-- TMPL_ELSIF NAME="opduplicate" -->Duplicate<!-- TMPL_ELSE --> Modify<!--/TMPL_IF--> <!--TMPL_IF Name="categoryname"--> <!--TMPL_VAR Name="categoryname"--> patron<!-- TMPL_ELSE --><!--TMPL_IF Name="I"--> Organization patron<!--/TMPL_IF --><!--TMPL_IF Name="A"--> Adult patron<!--/TMPL_IF --><!--TMPL_IF Name="C"--> Child patron<!--/TMPL_IF --><!--TMPL_IF Name="P"--> Professional patron<!--/TMPL_IF --><!--TMPL_IF Name="S"--> Staff patron<!--/TMPL_IF --><!--/TMPL_IF --><!--TMPL_UNLESS Name="opadd"--> <!-- TMPL_VAR NAME="surname" -->, <!-- TMPL_VAR name="firstname" --><!--/TMPL_UNLESS--></title>
4 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
5 <!-- TMPL_INCLUDE NAME="calendar.inc" -->
6 <script type="text/JavaScript" language="JavaScript">
7 //<![CDATA[
8     $(document).ready(function() {
9                 $("fieldset.rows input").keydown(function(e){ return checkEnter(e); });
10         $("#guarantordelete").click(function() {
11             $("#contact-details").hide().find('a').remove();
12             $("#guarantorid, #contactname, #contactfirstname").each(function () { this.value = "" });
13             $("#contactname, #contactfirstname")
14                 .each(function () { this.type = 'text' })
15                 .parent().find('span').remove();
16             $("#guarantorsearch").val("Set to Patron");
17         });
18         $("#select_city").change(function(){
19             var myRegEx=new RegExp(/(.*)\|(.*)/);
20             document.form.select_city.value.match(myRegEx);
21             document.form.zipcode.value=RegExp.$1;
22             document.form.city.value=RegExp.$2;
23         });
24     });
25
26     function clear_entry(node) {
27         var original = node.parentNode.parentNode;
28         $("input[type=text]", original).attr('value', '');
29         $("select", original).attr('value', '');
30     }
31
32     function clone_entry(node) {
33         var original = node.parentNode.parentNode;
34         var clone = original.cloneNode(true);
35         var newId = 50 + parseInt(Math.random() * 100000);
36         $("input", clone).attr('id', function() {
37             return this.id.replace(/patron_attr_\d+/, 'patron_attr_' + newId);
38         });
39         $("input", clone).attr('name', function() {
40             return this.name.replace(/patron_attr_\d+/, 'patron_attr_' + newId);
41         });
42         $("select", clone).attr('id', function() {
43             return this.id.replace(/patron_attr_\d+/, 'patron_attr_' + newId);
44         });
45         $("select", clone).attr('name', function() {
46             return this.name.replace(/patron_attr_\d+/, 'patron_attr_' + newId);
47         });
48         $("input#patron_attr_" + newId, clone).attr('value','');
49         $("select#patron_attr_" + newId, clone).attr('value','');
50         original.parentNode.insertBefore(clone, original.nextSibling);
51     }
52                 var MSG_SEPARATOR = _("Separator must be / in field ");
53         var MSG_INCORRECT_DAY = _("Invalid day entered in field ");
54         var MSG_INCORRECT_MONTH = _("Invalid month entered in field ");
55         var MSG_INCORRECT_YEAR = _("Invalid year entered in field ");
56         var MSG_DUPLICATE_PATRON = _("Warning: Duplicate patron");
57         var MSG_DUPLICATE_ORGANIZATION = _("Warning: Duplicate organization");
58         var MSG_LATE_EXPIRY = _("Warning: Expiration date falls before enrollment date");
59         var MSG_MISSING_MANDATORY = _("The following fields are mandatory:");
60         var MSG_DUPLICATE_SUSPICION = _("Please confirm whether this is a duplicate patron");
61 //]]>
62 </script>
63 <script type="text/javascript" src="<!-- TMPL_VAR NAME='themelang' -->/js/members.js"></script>
64 </head>
65 <body>
66 <!-- TMPL_INCLUDE NAME="header.inc" -->
67 <!-- TMPL_INCLUDE NAME="patron-search.inc" -->
68
69 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>  &rsaquo; 
70 <!-- TMPL_IF NAME="opadd" -->
71                 Add<!--TMPL_IF Name="categoryname"--> <!--TMPL_VAR Name="categoryname"--> patron<!-- TMPL_ELSE --><!--TMPL_IF Name="I"--> Organization patron<!--/TMPL_IF --><!--TMPL_IF Name="A"--> Adult patron<!--/TMPL_IF --><!--TMPL_IF Name="C"--> Child patron<!--/TMPL_IF --><!--TMPL_IF Name="P"--> Professional patron<!--/TMPL_IF --><!--TMPL_IF Name="S"--> Staff patron<!--/TMPL_IF --><!--/TMPL_IF -->
72 <!-- TMPL_VAR NAME="surname" --> <!-- TMPL_VAR name="firstname" -->
73 <!-- TMPL_ELSE --> 
74 <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!-- TMPL_VAR NAME="borrowernumber" -->"><!-- TMPL_VAR name="firstname" --> <!-- TMPL_VAR NAME="surname" --></a> &rsaquo; <strong><!-- TMPL_IF NAME="opduplicate" -->Duplicate<!-- TMPL_ELSE -->Modify<!--/TMPL_IF --><!--TMPL_IF Name="categoryname"--> <!--TMPL_VAR Name="categoryname"--> patron<!-- TMPL_ELSE --><!--TMPL_IF Name="I"--> Organization patron<!--/TMPL_IF --><!--TMPL_IF Name="A"--> Adult patron<!--/TMPL_IF --><!--TMPL_IF Name="C"--> Child patron<!--/TMPL_IF --><!--TMPL_IF Name="P"--> Professional patron<!--/TMPL_IF --><!--TMPL_IF Name="S"--> Staff patron<!--/TMPL_IF --><!--/TMPL_IF -->
75 </strong><!-- /TMPL_IF --></div>
76 <!-- TMPL_IF NAME="opadd" --><div id="doc" class="yui-t7"><!-- TMPL_ELSE --><div id="doc3" class="yui-t2"><!-- /TMPL_IF -->
77    
78    <div id="bd">
79         <div id="yui-main">
80         <div class="yui-b">
81
82         <!-- TMPL_IF NAME="no_add" --><div class="dialog alert"><h3>Cannot add patron</h3>
83                 <!-- TMPL_IF NAME="no_branches" --><p>There are <strong>no libraries defined</strong>. <!-- TMPL_IF NAME="CAN_user_parameters" -->Please <a href="/cgi-bin/koha/admin/branches.pl">add a library</a>.<!-- TMPL_ELSE -->An administrator must define at least one library.<!-- /TMPL_IF --></p><!-- /TMPL_IF -->
84                 <!-- TMPL_IF NAME="no_categories" --><p>There are <strong>no patron categories defined</strong>. <!-- TMPL_IF NAME="CAN_user_parameters" -->Please <a href="/cgi-bin/koha/admin/categorie.pl">add a patron category</a>.<!-- TMPL_ELSE -->An administrator must define at least one patron category.</p><!-- /TMPL_IF --><!-- /TMPL_IF --></div><!-- /TMPL_IF -->
85
86         <!-- TMPL_UNLESS NAME="no_add" -->
87         <!-- TMPL_IF NAME="opadd" -->
88         <h1>
89                 Add<!--TMPL_IF Name="categoryname"--> <!--TMPL_VAR Name="categoryname"--> patron<!-- TMPL_ELSE --><!--TMPL_IF Name="I"--> Organization patron<!--/TMPL_IF --><!--TMPL_IF Name="A"--> Adult patron<!--/TMPL_IF --><!--TMPL_IF Name="C"--> Child patron<!--/TMPL_IF --><!--TMPL_IF Name="P"--> Professional patron<!--/TMPL_IF --><!--TMPL_IF Name="S"--> Staff patron<!--/TMPL_IF --><!--/TMPL_IF --> <!-- TMPL_VAR name="firstname" --> <!-- TMPL_VAR NAME="surname" --> 
90         </h1>
91         <!-- TMPL_ELSE -->
92         <h1>
93                 <!-- TMPL_IF NAME="opduplicate" -->Duplicate<!-- TMPL_ELSE -->Modify<!--/TMPL_IF --><!--TMPL_IF Name="categoryname"--> <!--TMPL_VAR Name="categoryname"--> patron<!-- TMPL_ELSE --><!--TMPL_IF Name="I"--> Organization patron<!--/TMPL_IF --><!--TMPL_IF Name="A"--> Adult patron<!--/TMPL_IF --><!--TMPL_IF Name="C"--> Child patron<!--/TMPL_IF --><!--TMPL_IF Name="P"--> Professional patron<!--/TMPL_IF --><!--TMPL_IF Name="S"--> Staff patron<!--/TMPL_IF --><!--/TMPL_IF -->
94 <!-- TMPL_VAR name="firstname" --> <!-- TMPL_VAR NAME="surname" --> 
95         </h1>
96         <!-- /TMPL_IF -->
97   
98         <!-- TMPL_IF NAME="check_member" -->
99                         <div class="dialog alert">
100                                 <h3>Duplicate patron record?</h3>
101                                 <p><a class="popup" href="javascript:Dopop('moremember.pl?print=brief&amp;borrowernumber=<!--TMPL_VAR NAME="check_member"-->');" >View existing record</a></p>
102                                 <form action="/cgi-bin/koha/members/memberentry.pl" method="get"><input type="hidden" name="op" value="modify" /><input type="hidden" name="borrowernumber" value="<!--TMPL_VAR NAME="check_member"-->" /><input type="hidden" name="category_type" value="<!--TMPL_VAR NAME="check_categorytype"-->" /><input class="edit" type="submit" value="It is a duplicate. Edit existing record" /></form>
103
104                                 <form name="form_double" action="/cgi-bin/koha/members/memberentry.pl" method="post">
105                                 <input type="hidden" name="nodouble" value="1" />
106                                 <input class="new" type="submit" value="Not a duplicate. Save as new record" />
107                         </div>
108         <!--/TMPL_IF-->
109
110         <!-- TMPL_IF Name="debug" -->
111                 <div id="debug">
112                                 <div>Debug is on (level <!-- TMPL_VAR NAME="debug" -->)</div>
113                 </div>
114         <!-- /TMPL_IF -->
115         <!-- TMPL_IF Name="nok" -->
116                 <div class="dialog alert">
117                         <p>The following fields are wrong. Please fix them.</p>
118                         <ul>
119                         <!-- TMPL_IF NAME="ERROR_login_exist" -->
120                                 <li id="ERROR_login_exist">Login/password already exists.</li>
121                         <!-- /TMPL_IF -->
122                         <!-- TMPL_IF NAME="ERROR_cardnumber" -->
123                                 <li id="ERROR_cardnumber">Cardnumber already in use.</li>
124                         <!-- /TMPL_IF -->
125                         <!-- TMPL_IF NAME="ERROR_age_limitations" -->
126                                 <li id="ERROR_age_limitations">Patron's age is incorrect for their category.  
127                                         Ages allowed are <!-- TMPL_VAR NAME="ERROR_age_limitations"-->.</li>
128                         <!-- /TMPL_IF -->
129                         <!-- TMPL_IF NAME="ERROR_branch" -->
130                                 <li id="ERROR_branch">Library is invalid.</li>
131                         <!-- /TMPL_IF -->   
132                         <!-- TMPL_IF NAME="ERROR_dateofbirth" -->
133                                 <li id="ERROR_dateofbirth">Date of birth is invalid.</li>
134                         <!-- /TMPL_IF -->
135                         <!-- TMPL_IF NAME="ERROR_dateenrolled" -->
136                                 <li id="ERROR_dateenrolled">Date of enrollment is invalid.</li>
137                         <!-- /TMPL_IF -->
138                         <!-- TMPL_IF NAME="ERROR_dateexpiry" -->
139                                 <li id="ERROR_dateexpiry">Date of expiration is invalid.</li>
140                         <!-- /TMPL_IF -->
141                         <!-- TMPL_IF NAME="ERROR_short_password" -->
142                                 <li id="ERROR_short_password">Password must be at least <!-- TMPL_VAR NAME="minPasswordLength" --> characters long.</li>
143                         <!-- /TMPL_IF -->
144             <!-- TMPL_IF NAME="ERROR_extended_unique_id_failed" -->
145                 <li id="ERROR_extended_unique_id_failed">The attribute value 
146                     <!-- TMPL_VAR NAME="ERROR_extended_unique_id_failed" --> is already is use by another patron record.</li>
147                         <!-- /TMPL_IF -->
148                         </ul>
149                 </div>
150         <!-- /TMPL_IF -->
151
152
153 <!-- TMPL_UNLESS NAME="check_member" --><form name="form" id="entryform"  action="/cgi-bin/koha/members/memberentry.pl" method="post">
154 <input type="hidden" name="nodouble"  value="<!-- TMPL_VAR NAME="nodouble" -->" /> <!-- /TMPL_UNLESS -->
155 <!--    field always hidden in different form (1,2,3) -->
156 <input type="hidden" name="BorrowerMandatoryField" value="<!--TMPL_VAR NAME="BorrowerMandatoryField"-->" />
157 <input type="hidden" name="category_type" value="<!-- TMPL_VAR name="category_type" -->" />
158 <input type="hidden" name="updtype" value="<!-- TMPL_VAR NAME="updtype" -->" />
159 <input type="hidden" name="select_roadtype" value="<!-- TMPL_VAR NAME="select_roadtype" -->" />
160 <input type="hidden" name="destination" value="<!-- TMPL_VAR NAME="destination" -->" />
161 <input type="hidden" name="check_member" value="<!-- TMPL_VAR NAME="check_member" -->" />
162 <input type="hidden" name="borrowernumber" value="<!-- TMPL_IF NAME="opduplicate" --><!-- TMPL_ELSE --><!-- TMPL_VAR NAME="borrowernumber" --><!-- /TMPL_IF -->" />
163 <input type="hidden" name="nodouble"  value="<!-- TMPL_IF NAME="opduplicate" --><!-- TMPL_ELSE --><!-- TMPL_VAR NAME="nodouble" --><!-- /TMPL_IF -->" />
164 <!--TMPL_IF Name="step"--><input type="hidden" name="step"  value="<!-- TMPL_VAR NAME="step" -->" /><!--/TMPL_IF-->
165 <!-- TMPL_IF NAME="opadd" --><input type="hidden" name="op" value="insert" /><!-- TMPL_ELSIF NAME="opduplicate" --><input type="hidden" name="op" value="insert" /><!-- TMPL_ELSE --><input type="hidden" name="op" value="save" /><!-- /TMPL_IF -->
166
167 <!--TMPL_IF Name="step_1"-->
168         <fieldset class="rows" id="memberentry_identity">
169                 <legend><!--TMPL_IF Name="I"-->Organization <!--TMPL_ELSE-->Patron <!--/TMPL_IF-->identity</legend>
170                 <ol>
171                 <!-- TMPL_UNLESS name="I" -->
172                 <!-- TMPL_IF NAME="title_cgipopup" -->
173             <li>
174             <!-- TMPL_IF NAME="mandatorytitle" -->
175                 <label for="btitle" class="required">
176             <!-- TMPL_ELSE -->
177                 <label for="btitle">
178             <!-- /TMPL_IF-->
179             Salutation: </label>
180             <!-- TMPL_VAR NAME="borrotitlepopup" -->
181             <!-- TMPL_IF NAME="mandatorytitle" --><span class="required">Required</span><!-- /TMPL_IF -->
182             </li>
183                 <!-- /TMPL_IF -->
184         <!-- /TMPL_UNLESS -->
185                 <li>
186                 <!-- TMPL_IF NAME="mandatorysurname" -->
187                 <label for="surname" class="required">
188                 <!-- TMPL_ELSE -->
189                 <label for="surname">
190                 <!-- /TMPL_IF-->
191                 Surname: </label>
192                 <!-- TMPL_IF NAME="uppercasesurnames" -->
193                 <input style="text-transform:uppercase;" type="text" id="surname" name="surname" size="20"  value="<!-- TMPL_VAR NAME="surname" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
194                 <!-- TMPL_ELSE -->
195                 <input type="text" id="surname" name="surname" size="20"  value="<!-- TMPL_VAR NAME="surname" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
196                 <!-- /TMPL_IF -->
197                 <!-- TMPL_IF NAME="mandatorysurname" --><span class="required">Required</span><!-- /TMPL_IF -->
198                 </li>
199                 <!-- TMPL_UNLESS name="I" -->
200             <li>
201                 <!-- TMPL_IF NAME="mandatoryfirstname" -->
202                 <label for="firstname" class="required">
203                 <!-- TMPL_ELSE -->
204                 <label for="firstname">
205                 <!-- /TMPL_IF-->
206                 First name: </label>
207                 <input type="text" id="firstname" name="firstname" size="20"  value="<!-- TMPL_IF NAME="opduplicate" --><!--TMPL_ELSE--><!-- TMPL_VAR NAME="firstname" --><!-- /TMPL_IF -->" />
208                 <!-- TMPL_IF NAME="mandatoryfirstname" --><span class="required">Required</span><!-- /TMPL_IF -->
209             </li>
210             <li>
211                 <!-- TMPL_IF NAME="mandatorydateofbirth" -->
212                 <label for="dateofbirth" class="required">
213                 <!-- TMPL_ELSE -->
214                 <label for="dateofbirth">
215                 <!-- /TMPL_IF-->
216                 Date of birth: </label>
217                                 
218         <!-- TMPL_IF NAME="metric" -->                  
219                 <input type="text" id="dateofbirth" name="dateofbirth" size="20" onchange="CheckDate(document.form.dateofbirth);" value="<!-- TMPL_IF NAME="opduplicate" --><!--TMPL_ELSE--><!-- TMPL_VAR NAME="dateofbirth" --><!-- /TMPL_IF -->" />
220 <!-- TMPL_ELSE -->
221                 <input type="text" id="dateofbirth" name="dateofbirth" size="20" value="<!-- TMPL_IF NAME="opduplicate" --><!--TMPL_ELSE--><!-- TMPL_VAR NAME="dateofbirth" --><!-- /TMPL_IF -->" />
222 <!-- /TMPL_IF -->
223
224                 <img src="<!-- TMPL_VAR Name="themelang" -->/lib/calendar/cal.gif" id="dateofbirth_button" alt="Show Calendar" />
225         <script language="JavaScript" type="text/javascript">
226             Calendar.setup(
227             {
228                 inputField : "dateofbirth",
229                 ifFormat : "<!-- TMPL_VAR NAME="DHTMLcalendar_dateformat" -->",
230                 button : "dateofbirth_button"
231             }
232             );
233         </script>
234         <!-- TMPL_IF NAME="mandatorydateofbirth" --><span class="required">Required</span><!-- /TMPL_IF -->
235         <!-- TMPL_IF NAME="ERROR_dateofbirth" --><span class="required">(Error)</span><!-- /TMPL_IF -->
236                 <div class="hint"><!-- TMPL_INCLUDE NAME="date-format.inc" --></div>
237             </li>
238             <li>
239                 <!-- TMPL_IF NAME="mandatoryinitials" -->
240                     <label for="initials" class="required">
241                 <!-- TMPL_ELSE -->
242                     <label for="initials">
243                 <!-- /TMPL_IF-->
244                 Initials: </label>
245                 <input type="text" id="initials" name="initials" size="20"  value="<!-- TMPL_VAR NAME="initials" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />      
246                 <!-- TMPL_IF NAME="mandatoryinitials" --><span class="required">Required</span><!-- /TMPL_IF -->
247             </li>
248         <!-- /TMPL_UNLESS -->
249                 <li>
250                         <!-- TMPL_IF NAME="mandatoryothernames" -->
251                         <label for="othernames" class="required">
252                         <!-- TMPL_ELSE -->
253                         <label for="othernames">
254                         <!-- /TMPL_IF-->
255                         Other name: </label>
256                         <input type="text" id="othernames" name="othernames" size="20"  value="<!-- TMPL_VAR NAME="othernames" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
257 <!-- TMPL_IF NAME="mandatoryothernames" --><span class="required">Required</span><!-- /TMPL_IF -->
258                 <!-- TMPL_IF NAME="I" --><input type="hidden" name="sex" value="N" /><!-- /TMPL_IF -->
259                 </li>
260     <!--TMPL_UNLESS Name="I"-->
261                 <li class="radio">
262                 
263                 <!-- TMPL_IF NAME="female" -->
264                                 <label for="sex-female">Female </label><input type="radio" name="sex" id="sex-female" value="F" checked="checked"  />
265 <!-- TMPL_ELSE -->
266                                 <label for="sex-female">Female </label><input type="radio" name="sex" id="sex-female" value="F" />
267 <!-- /TMPL_IF -->
268                 <!-- TMPL_IF NAME="male" -->
269                 <label for="sex-male">Male </label><input type="radio" name="sex" id="sex-male" value="M" checked="checked" />
270 <!-- TMPL_ELSE -->
271                                 <label for="sex-male">Male </label><input type="radio" name="sex" id="sex-male" value="M" />
272 <!-- /TMPL_IF -->
273 <!-- TMPL_IF NAME="none" -->
274                                 <label for="sex-none">N/A </label><input type="radio" name="sex" id="sex-none" value=""  checked="checked"  />
275 <!-- TMPL_ELSE -->
276                                 <label for="sex-none">N/A </label><input type="radio" name="sex" id="sex-none" value="" />
277 <!-- /TMPL_IF -->
278         </li>
279     <!--/TMPL_UNLESS-->
280                 </ol>
281         </fieldset>
282         
283 <!--TMPL_IF Name="showguarantor"--><input type="hidden" id="guarantorid" name="guarantorid"   value="<!-- TMPL_VAR NAME="guarantorid" -->" />
284     <fieldset class="rows">
285         <legend>Guarantor Information</legend>
286         <ol>
287 <!--TMPL_IF Name="P"-->
288                 <!-- TMPL_IF NAME="guarantorid" -->
289                 <li id="contact-details">
290                 <!-- TMPL_ELSE -->
291                 <li id="contact-details" style="display: none">
292                 <!-- /TMPL_IF -->
293                     <span class="label">Organization #:</span> <!-- TMPL_IF NAME="guarantorid" --> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!-- TMPL_VAR NAME="guarantorid" -->" target="blank"><!-- TMPL_VAR NAME="guarantorid" --></a><!-- /TMPL_IF -->
294                 </li>
295                 <li>
296                     <label for="contactname">Organization name: </label>
297                     <!-- TMPL_IF NAME="guarantorid" -->
298                     <span><!-- TMPL_VAR NAME="contactname" --></span>
299                     <input name="contactname" id="contactname" type="hidden" size="20" value="<!-- TMPL_VAR NAME="contactname" -->" />
300                     <!-- TMPL_ELSE -->
301                     <input name="contactname" id="contactname" type="text" size="20" value="<!-- TMPL_VAR NAME="contactname" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
302                     <!-- /TMPL_IF -->
303                 </li>
304 <!-- TMPL_ELSE -->
305  <!-- TMPL_IF NAME="C" -->
306  <!-- TMPL_IF NAME="guarantorid" -->
307  <li id="contact-details">
308  <!-- TMPL_ELSE -->
309  <li id="contact-details" style="display: none">
310  <!-- /TMPL_IF -->
311      <span class="label">Patron #:</span> <!-- TMPL_IF NAME="guarantorid" --> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!-- TMPL_VAR NAME="guarantorid" -->" target="blank"><!-- TMPL_VAR NAME="guarantorid" --></a><!-- /TMPL_IF -->
312  </li>
313  <li>
314      <label for="contactname">Surname: </label>
315      <!-- TMPL_IF NAME="guarantorid" -->
316      <span><!-- TMPL_VAR NAME="contactname" --></span>
317      <input name="contactname" id="contactname" type="hidden" size="20" value="<!-- TMPL_VAR NAME="contactname" -->" />
318      <!-- TMPL_ELSE -->
319      <input name="contactname" id="contactname" type="text" size="20" value="<!-- TMPL_VAR NAME="contactname" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
320      <!-- /TMPL_IF -->
321  </li>
322  <li>
323      <label for="contactfirstname">First name: </label>
324      <!-- TMPL_IF NAME="guarantorid" -->
325      <span><!-- TMPL_VAR NAME="contactfirstname" --></span>
326      <input name="contactfirstname" id="contactfirstname" type="hidden" size="20" value="<!-- TMPL_VAR NAME="contactfirstname" -->" />
327      <!-- TMPL_ELSE -->
328      <input name="contactfirstname" id="contactfirstname" type="text" size="20" value="<!-- TMPL_VAR NAME="contactfirstname" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
329      <!-- /TMPL_IF -->
330  </li>
331  <!-- TMPL_IF name="relshiploop" -->
332  <li>
333      <label for="relationship">Relationship: </label>
334      <select name="relationship" id="relationship" >
335          <!-- TMPL_LOOP name="relshiploop" -->
336          <!-- TMPL_IF name="selected" -->
337          <option value="<!-- TMPL_VAR name="relationship" -->" selected="selected" ><!-- TMPL_VAR name="relationship" --></option>
338          <!-- TMPL_ELSE -->
339          <option value="<!-- TMPL_VAR name="relationship" -->"><!-- TMPL_VAR name="relationship" --></option>
340          <!-- /TMPL_IF -->
341          <!-- /TMPL_LOOP -->
342      </select>
343  </li>
344  <!-- /TMPL_IF -->
345  <!-- /TMPL_IF -->
346 <!--/TMPL_IF -->
347         <li>
348             <span class="label">&nbsp;</span>
349             <!-- TMPL_IF NAME="guarantorid" -->
350             <input id="guarantorsearch" type="button" value="Change" onclick="Dopopguarantor('guarantor_search.pl?category_type=<!-- TMPL_VAR NAME="category_type" -->');" />
351             <!-- TMPL_ELSE -->
352             <input id="guarantorsearch" type="button" value="Set to Patron" onclick="Dopopguarantor('guarantor_search.pl?category_type=<!-- TMPL_VAR NAME="category_type" -->');" />
353             <!-- /TMPL_IF -->
354             <input id="guarantordelete" type="button" value="Delete" />
355         </li>
356         </ol>
357     </fieldset>
358
359 <!--/TMPL_IF-->
360 <fieldset class="rows">
361     <legend>Main address</legend><ol>
362     <li>
363       <!-- TMPL_IF NAME="mandatorystreetnumber" -->
364       <label for="streetnumber" class="required">
365       <!--TMPL_ELSE-->
366       <label for="streetnumber">
367       <!-- /TMPL_IF-->
368       Street number: </label>
369       <input type="text" id="streetnumber" name="streetnumber" size="5" value="<!-- TMPL_VAR NAME="streetnumber" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
370 <!-- TMPL_IF NAME="mandatorystreetnumber" --><span class="required">Required</span><!-- /TMPL_IF -->
371     </li>
372     <!-- TMPL_IF NAME="road_cgipopup" -->
373       <li>
374       <!-- TMPL_IF NAME="mandatorystreettype" -->
375       <label for="streettype" class="required">
376       <!--TMPL_ELSE-->
377       <label for="streettype">
378       <!-- /TMPL_IF-->
379       Street type: </label>
380       <!-- TMPL_VAR NAME="roadpopup" -->
381           <!-- TMPL_IF NAME="mandatorystreettype" --><span class="required">Required</span><!-- /TMPL_IF -->
382       </li>
383     <!--/TMPL_IF--> 
384     <li>
385       <!-- TMPL_IF NAME="mandatoryaddress" -->
386       <label for="address" class="required">
387       <!--TMPL_ELSE-->
388       <label for="address">
389       <!--/TMPL_IF-->
390       Address: </label>
391       <input type="text" id="address" name="address" size="35" value="<!-- TMPL_VAR NAME="address" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
392           <!-- TMPL_IF NAME="mandatoryaddress" --><span class="required">Required</span><!-- /TMPL_IF -->
393     </li>
394     <li>
395       <!-- TMPL_IF NAME="mandatoryaddress2" -->
396       <label for="address2" class="required">
397       <!--TMPL_ELSE-->
398       <label for="address2">
399       <!-- /TMPL_IF-->
400       Address 2: </label>
401       <input type="text" id="address2" name="address2" size="35" value="<!-- TMPL_VAR NAME="address2" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
402           <!-- TMPL_IF NAME="mandatoryaddress2" --><span class="required">Required</span><!-- /TMPL_IF -->
403     </li>  
404     <li>
405       <!-- TMPL_IF NAME="mandatorycity" -->
406         <label for="city" class="required">
407       <!--TMPL_ELSE-->
408         <label for="city">
409       <!-- /TMPL_IF-->
410       City: </label>
411         
412         <input type="text" id="city" name="city" size="20" value="<!-- TMPL_VAR NAME="city" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
413         <!-- TMPL_IF NAME="city_cgipopup" -->or <strong>choose</strong>
414         <select id="select_city" name="select_city">
415         <!-- TMPL_LOOP NAME="city_loop" -->
416             <!-- TMPL_IF NAME="selected" -->
417             <option value="<!-- TMPL_VAR NAME="city_zipcode"-->|<!-- TMPL_VAR NAME="city_name" -->" selected="selected">
418             <!-- TMPL_ELSE -->
419             <option value="<!-- TMPL_VAR NAME="city_zipcode"-->|<!-- TMPL_VAR NAME="city_name" -->">
420             <!-- /TMPL_IF -->
421                 <!-- TMPL_VAR NAME="city_name" --> <!-- TMPL_VAR NAME="city_zipcode" -->
422             </option>
423         <!-- /TMPL_LOOP -->
424         </select>
425         <!-- /TMPL_IF -->
426           <!-- TMPL_IF NAME="mandatorycity" --><span class="required">Required</span><!-- /TMPL_IF -->
427     </li>
428     <li> 
429       <!-- TMPL_IF NAME="mandatorystate" -->
430         <label for="state" class="required">
431       <!--TMPL_ELSE-->
432         <label for="state">
433       <!-- /TMPL_IF-->
434       State: </label>
435       <input type="text" name="state" id="state" size="20" value="<!-- TMPL_VAR NAME="state" -->" />
436           <!-- TMPL_IF NAME="mandatorystate" --><span class="required">Required</span><!-- /TMPL_IF -->
437     </li>
438     <li> 
439       <!-- TMPL_IF NAME="mandatoryzipcode" -->
440         <label for="zipcode" class="required">
441       <!--TMPL_ELSE-->
442         <label for="zipcode">
443       <!-- /TMPL_IF-->
444       Zip/Postal code: </label>
445       <input type="text" name="zipcode" id="zipcode" size="10" value="<!-- TMPL_VAR NAME="zipcode" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
446           <!-- TMPL_IF NAME="mandatoryzipcode" --><span class="required">Required</span><!-- /TMPL_IF -->
447     </li>
448     
449     <li> 
450       <!-- TMPL_IF NAME="mandatorycountry" -->
451         <label for="country" class="required">
452       <!--TMPL_ELSE-->
453         <label for="country">
454       <!-- /TMPL_IF-->
455       Country: </label>
456       <input type="text" name="country" id="country" size="20" value="<!-- TMPL_VAR NAME="country" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
457           <!-- TMPL_IF NAME="mandatorycountry" --><span class="required">Required</span><!-- /TMPL_IF -->
458     </li>    
459   
460         </ol>
461     </fieldset>
462   <fieldset class="rows" id="memberentry_contact">
463     <legend>Contact</legend><ol>
464       <li>
465       <!-- TMPL_IF NAME="mandatoryphone" --> 
466       <label for="phone" class="required">
467       <!--TMPL_ELSE-->
468       <label for="phone">
469       <!-- /TMPL_IF-->
470       Phone (home): </label>
471       <input type="text" id="phone" name="phone" value="<!-- TMPL_VAR NAME="phone" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
472           <!-- TMPL_IF NAME="mandatoryphone" --><span class="required">Required</span><!-- /TMPL_IF --><div class="hint">Shows on transit slips</div>
473
474     </li>
475     <li>
476       <!-- TMPL_IF NAME="mandatoryphonepro" -->
477       <label for="phonepro" class="required">
478       <!--TMPL_ELSE-->
479       <label for="phonepro">
480       <!-- /TMPL_IF-->
481       Phone (work): </label>
482       <input type="text" id="phonepro" name="phonepro" value="<!-- TMPL_VAR NAME="phonepro" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
483           <!-- TMPL_IF NAME="mandatoryphonepro" --><span class="required">Required</span><!-- /TMPL_IF -->
484     </li>
485     <li>
486       <!-- TMPL_IF NAME="mandatorymobile" -->
487       <label for="mobile" class="required">
488       <!--TMPL_ELSE-->
489       <label for="mobile">
490       <!-- /TMPL_IF-->
491       Phone (cell): </label>
492       <input type="text" id="mobile" name="mobile" value="<!-- TMPL_VAR NAME="mobile" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
493           <!-- TMPL_IF NAME="mandatorymobile" --><span class="required">Required</span><!-- /TMPL_IF -->
494     </li>
495     <li>
496       <!-- TMPL_IF NAME="mandatoryemail" -->
497       <label for="email" class="required">
498       <!--TMPL_ELSE-->
499       <label for="email">
500       <!-- /TMPL_IF-->
501       Primary Email: </label>
502       <input type="text" id="email" name="email" size="45" value="<!-- TMPL_VAR NAME="email" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />  
503           <!-- TMPL_IF NAME="mandatoryemail" --><span class="required">Required</span><!-- /TMPL_IF --><div class="hint">Shows on transit slips</div>
504
505     </li>
506     <li>
507       <!-- TMPL_IF NAME="mandatoryemailpro" --> 
508       <label for="emailpro" class="required">
509       <!--TMPL_ELSE-->
510       <label for="emailpro">
511       <!-- /TMPL_IF-->
512       Secondary Email: </label>
513       <input type="text" id="emailpro" name="emailpro" size="45" value="<!-- TMPL_VAR NAME="emailpro" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
514           <!-- TMPL_IF NAME="mandatoryemailpro" --><span class="required">Required</span><!-- /TMPL_IF -->
515     </li>
516     <li>
517       <!-- TMPL_IF NAME="mandatoryfax" -->
518       <label for="fax" class="required">
519       <!--TMPL_ELSE-->
520       <label for="fax">
521       <!-- /TMPL_IF-->
522       Fax: </label>
523       <input type="text" id="fax" name="fax" value="<!-- TMPL_VAR NAME="fax" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
524           <!-- TMPL_IF NAME="mandatoryfax" --><span class="required">Required</span><!-- /TMPL_IF -->
525     </li>
526         </ol>
527   </fieldset>
528
529
530 <!-- ************************ STEP_1 *********************** -->
531 <!--/TMPL_IF -->
532 <!--TMPL_IF Name="step_6"-->
533
534                 <fieldset class="rows" id="memberentry_address">
535                 <legend>Alternate address</legend><ol>
536                         <li>
537                                 <!-- TMPL_IF NAME="mandatoryB_address" -->
538                                         <label for="B_address" class="required">
539                                 <!--TMPL_ELSE-->
540                                         <label for="B_address">
541                                 <!-- /TMPL_IF-->
542                                 Address: </label>
543                                 <input type="text" id="B_address" name="B_address" size="40" value="<!-- TMPL_VAR NAME="B_address" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
544           <!-- TMPL_IF NAME="mandatoryB_address" --><span class="required">Required</span><!-- /TMPL_IF -->
545                         </li>
546                         <li>
547                                 <!-- TMPL_IF NAME="mandatoryB_address2" -->
548                                         <label for="B_address2" class="required">
549                                 <!--TMPL_ELSE-->
550                                         <label for="B_address2">
551                                 <!-- /TMPL_IF-->
552                                 Address 2: </label>
553                                 <input type="text" id="B_address2" name="B_address2" size="40" value="<!-- TMPL_VAR NAME="B_address2" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
554           <!-- TMPL_IF NAME="mandatoryB_address2" --><span class="required">Required</span><!-- /TMPL_IF -->
555                         </li>
556                         <li>
557                                 <!-- TMPL_IF NAME="mandatoryB_city" -->
558                                         <label for="B_city" class="required" >
559                                 <!--TMPL_ELSE-->
560                                         <label for="B_city">
561                                 <!-- /TMPL_IF-->
562                                 City: </label>
563                                 <input type="text" id="B_city" name="B_city" size="20" value="<!-- TMPL_VAR NAME="B_city" -->" />
564           <!-- TMPL_IF NAME="mandatoryB_city" --><span class="required">Required</span><!-- /TMPL_IF -->
565                         </li>
566                         <li>
567                                 <!-- TMPL_IF NAME="mandatoryB_state" -->
568                                         <label for="B_state" class="required" >
569                                 <!--TMPL_ELSE-->
570                                         <label for="B_state">
571                                 <!-- /TMPL_IF-->
572                                 State: </label>
573                                 <input type="text" id="B_state" name="B_state" size="20" value="<!-- TMPL_VAR NAME="B_state" -->" />
574           <!-- TMPL_IF NAME="mandatoryB_state" --><span class="required">Required</span><!-- /TMPL_IF -->
575                         </li>
576                         <li>
577                                 <!-- TMPL_IF NAME="mandatoryB_zipcode" -->
578                                         <label for="B_zipcode" class="required">
579                                 <!--TMPL_ELSE-->
580                                         <label for="B_zipcode">
581                                 <!-- /TMPL_IF-->
582                                 Zip/Postal code: </label>
583                                 <input type="text" id="B_zipcode" name="B_zipcode" maxlength="10" size="10" value="<!-- TMPL_VAR NAME="B_zipcode" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
584           <!-- TMPL_IF NAME="mandatoryB_zipcode" --><span class="required">Required</span><!-- /TMPL_IF -->
585                         </li>
586                         <li>
587                                 <!-- TMPL_IF NAME="mandatoryB_country" -->
588                                         <label for="B_country" class="required">
589                                 <!--TMPL_ELSE-->
590                                         <label for="B_country">
591                                 <!-- /TMPL_IF-->
592                                 Country: </label>
593                                 <input type="text" id="B_country" name="B_country" size="20" value="<!-- TMPL_VAR NAME="B_country" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
594           <!-- TMPL_IF NAME="mandatoryB_country" --><span class="required">Required</span><!-- /TMPL_IF -->
595                         </li>
596             <li>
597                 <!-- TMPL_IF NAME="mandatoryB_phone" -->
598                 <label for="B_phone" class="required">
599                 <!--TMPL_ELSE-->
600                 <label for="B_phone">
601                 <!-- /TMPL_IF-->
602                 Phone: </label>  
603                 <input type="text" id="B_phone" name="B_phone" value="<!-- TMPL_VAR NAME="B_phone" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
604                 <!-- TMPL_IF NAME="mandatoryB_phone" --><span class="required">Required</span><!-- /TMPL_IF -->
605             </li>
606                         <li> 
607         <!-- TMPL_IF NAME="mandatoryB_email" -->
608           <label for="B_email" class="required">
609         <!--TMPL_ELSE-->
610           <label for="B_email">
611         <!-- /TMPL_IF-->
612         Email: </label>
613         <input type="text" id="B_email" name="B_email" size="45" value="<!-- TMPL_VAR NAME="B_email" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
614                 <!-- TMPL_IF NAME="mandatoryB_email" --><span class="required">Required</span><!-- /TMPL_IF --> </li>
615             <li>
616                 <!-- TMPL_IF NAME="mandatorycontactnote" -->
617                 <label for="contactnote" class="required">
618                 <!--TMPL_ELSE-->
619                 <label for="contactnote">
620                 <!-- /TMPL_IF-->
621                 Contact note: </label>
622                 <textarea id="contactnote" name="contactnote" cols="40" rows="2"><!-- TMPL_VAR NAME="contactnote" --></textarea>
623         <!-- TMPL_IF NAME="mandatorycontactnote" --><span class="required">Required</span><!-- /TMPL_IF -->
624             </li>
625                         </ol>
626                 </fieldset>
627 <!-- /TMPL_IF -->               
628 <!--TMPL_IF Name="step_2"-->
629                 <fieldset class="rows" id="memberentry_altaddress">       
630                     <legend>Alternate Contact</legend><ol>
631                         <li>
632                             <!-- TMPL_IF NAME="mandatoryaltcontactsurname" -->
633                                 <label for="altcontactsurname" class="required">
634                                 <!-- TMPL_ELSE -->
635                                 <label for="altcontactsurname">
636                                 <!-- /TMPL_IF -->
637                                 Surname:</label>
638                                 <input type="text" name="altcontactsurname" id="altcontactsurname" value="<!-- TMPL_VAR NAME="altcontactsurname" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
639                                 <!-- TMPL_IF NAME="mandatoryaltcontactsurname" --><span class="required">Required</span><!-- /TMPL_IF -->
640                         </li>
641                         <li>
642                             <!-- TMPL_IF NAME="mandatoryaltcontactfirstname" -->
643                                 <label for="altcontactfirstname" class="required">
644                                 <!-- TMPL_ELSE -->
645                                 <label for="altcontactfirstname">
646                                 <!-- /TMPL_IF -->
647                                 First name:</label>
648                                 <input type="text" name="altcontactfirstname" id="altcontactfirstname" value="<!-- TMPL_VAR NAME="altcontactfirstname" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
649                                 <!-- TMPL_IF NAME="mandatoryaltcontactfirstname" --><span class="required">Required</span><!-- /TMPL_IF -->
650                         </li>
651                         <li>
652                             <!-- TMPL_IF NAME="mandatoryaltcontactaddress1" -->
653                                 <label for="altcontactaddress1" class="required">
654                                 <!-- TMPL_ELSE -->
655                                 <label for="altcontactaddress1">
656                                 <!-- /TMPL_IF -->
657                                 Address:</label>
658                                 <input type="text" name="altcontactaddress1" id="altcontactaddress1" value="<!-- TMPL_VAR NAME="altcontactaddress1" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> size="40" />
659                                 <!-- TMPL_IF NAME="mandatoryaltcontactaddress1" --><span class="required">Required</span><!-- /TMPL_IF -->
660                         </li>
661                         <li>
662                             <!-- TMPL_IF NAME="mandatoryaltcontactaddress2" -->
663                                 <label for="altcontactaddress2" class="required">
664                                 <!-- TMPL_ELSE -->
665                                 <label for="altcontactaddress2">
666                                 <!-- /TMPL_IF -->
667                                 Address 2:</label>
668                                 <input type="text" name="altcontactaddress2" id="altcontactaddress2" value="<!-- TMPL_VAR NAME="altcontactaddress2" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> size="40" />
669                                 <!-- TMPL_IF NAME="mandatoryaltcontactaddress2" --><span class="required">Required</span><!-- /TMPL_IF -->
670                         </li>
671                         <li>
672                             <!-- TMPL_IF NAME="mandatoryaltcontactaddress3" -->
673                                 <label for="altcontactaddress3" class="required">
674                                 <!-- TMPL_ELSE -->
675                                 <label for="altcontactaddress3">
676                                 <!-- /TMPL_IF -->
677                                 City:</label>
678                                 <input type="text" name="altcontactaddress3" id="altcontactaddress3" value="<!-- TMPL_VAR NAME="altcontactaddress3" -->" size="20" />
679                                 <!-- TMPL_IF NAME="mandatoryaltcontactaddress3" --><span class="required">Required</span><!-- /TMPL_IF -->
680                         </li>
681                         <li>
682                             <!-- TMPL_IF NAME="mandatoryaltcontactstate" -->
683                                 <label for="altcontactstate" class="required">
684                                 <!-- TMPL_ELSE -->
685                                 <label for="altcontactstate">
686                                 <!-- /TMPL_IF -->
687                                 State:</label>
688                                 <input type="text" name="altcontactstate" id="altcontactstate" value="<!-- TMPL_VAR NAME="altcontactstate" -->" size="20" />
689                                 <!-- TMPL_IF NAME="mandatoryaltcontactstate" --><span class="required">Required</span><!-- /TMPL_IF -->
690                         </li>
691                         <li>
692                             <!-- TMPL_IF NAME="mandatoryaltcontactzipcode" -->
693                                 <label for="altcontactzipcode" class="required">
694                                 <!-- TMPL_ELSE -->
695                                 <label for="altcontactzipcode">
696                                 <!-- /TMPL_IF -->
697                                 Zip/Postal code:</label>
698                                 <input type="text" name="altcontactzipcode" id="altcontactzipcode" value="<!-- TMPL_VAR NAME="altcontactzipcode" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> size="5" />
699                                 <!-- TMPL_IF NAME="mandatoryaltcontactzipcode" --><span class="required">Required</span><!-- /TMPL_IF -->
700                         </li>
701                         <li>
702                             <!-- TMPL_IF NAME="mandatoryaltcontactcountry" -->
703                                 <label for="altcontactcountry" class="required">
704                                 <!-- TMPL_ELSE -->
705                                 <label for="altcontactcountry">
706                                 <!-- /TMPL_IF -->
707                                 Country:</label>
708                                 <input type="text" name="altcontactcountry" id="altcontactcountry" value="<!-- TMPL_VAR NAME="altcontactcountry" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> size="20" />
709                                 <!-- TMPL_IF NAME="mandatoryaltcontactcountry" --><span class="required">Required</span><!-- /TMPL_IF -->
710                         </li>                   
711                         <li>
712                             <!-- TMPL_IF NAME="mandatoryaltcontactphone" -->
713                                 <label for="altcontactphone" class="required">
714                                 <!-- TMPL_ELSE -->
715                                 <label for="altcontactphone">
716                                 <!-- /TMPL_IF -->
717                                 Phone:</label>
718                                 <input type="text" name="altcontactphone" id="altcontactphone" value="<!-- TMPL_VAR NAME="altcontactphone" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
719                                 <!-- TMPL_IF NAME="mandatoryaltcontactphone" --><span class="required">Required</span><!-- /TMPL_IF -->
720                         </li>
721             </ol>
722         </fieldset>
723
724
725   <!-- TMPL_IF NAME="I" -->
726         <!-- TMPL_IF NAME="memberofinstution" -->
727         <fieldset class="rows" id="memberentry_organisation">
728                 <legend>Organizations</legend><ol>
729                 <li>
730                         <!-- TMPL_IF NAME="mandatoryphone" --> 
731                         <label for="organisations" class="required">
732                         <!--TMPL_ELSE-->
733                         <label for="organisations">
734                         <!-- /TMPL_IF-->
735                         Organization(s): </label>
736                         <!-- TMPL_VAR NAME="CGIorganisations" -->
737           <!-- TMPL_IF NAME="mandatoryphone" --><span class="required">Required</span><!-- /TMPL_IF -->
738                 </li>
739                 </ol>
740         </fieldset>
741         <!-- /TMPL_IF -->
742   <!-- /TMPL_IF -->
743               
744 <!-- /TMPL_IF -->
745 <!--TMPL_IF Name="step_3"-->
746
747   <fieldset class="rows" id="memberentry_library_management">
748     <legend>Library Management</legend><ol>
749    <li> <!-- TMPL_IF NAME="mandatorycardnumber" -->
750       <label for="cardnumber" class="required">
751     <!--TMPL_ELSE -->
752       <label for="cardnumber">
753     <!-- /TMPL_IF--> 
754     Card number: </label>
755     <input type="text" id="cardnumber" name="cardnumber" size="20" value="<!-- TMPL_IF NAME="opduplicate" --><!--TMPL_ELSE--><!-- TMPL_VAR NAME="cardnumber" --><!-- /TMPL_IF -->" />
756           <!-- TMPL_IF NAME="mandatorycardnumber" --><span class="required">Required</span><!-- /TMPL_IF --></li>
757     <li>
758       <!-- TMPL_IF NAME="mandatorybranchcode" -->
759         <label for="branchcode" class="required">
760       <!--TMPL_ELSE-->
761         <label for="branchcode">
762       <!-- /TMPL_IF-->
763       Library: </label>
764       <!-- TMPL_VAR NAME="CGIbranch" -->
765           <!-- TMPL_IF NAME="mandatorybranchcode" --><span class="required">Required</span><!-- /TMPL_IF -->
766     </li>
767     <li>
768         <label for="categorycode">Category: </label>
769         <select id="categorycode" name="categorycode">
770         <!-- TMPL_LOOP NAME="typeloop" -->
771                         <!-- TMPL_LOOP NAME="categoryloop" -->
772                                 <!-- TMPL_IF NAME="__first__" -->
773                                         <!-- TMPL_IF NAME="typename_C" --><optgroup label="Child"><!-- /TMPL_IF -->
774                                         <!-- TMPL_IF NAME="typename_A" --><optgroup label="Adult"><!-- /TMPL_IF -->
775                                         <!-- TMPL_IF NAME="typename_S" --><optgroup label="Staff"><!-- /TMPL_IF -->
776                                         <!-- TMPL_IF NAME="typename_I" --><optgroup label="Organization"><!-- /TMPL_IF -->
777                                         <!-- TMPL_IF NAME="typename_P" --><optgroup label="Professional"><!-- /TMPL_IF -->
778                                         <!-- TMPL_IF NAME="typename_X" --><optgroup label="Statistical"><!-- /TMPL_IF -->
779                             <!-- /TMPL_IF -->
780                                 <!-- TMPL_IF NAME="categorycodeselected" -->
781                <option value="<!-- TMPL_VAR NAME="categorycode" -->" selected="selected"><!-- TMPL_VAR NAME="categoryname" --></option>
782                                 <!-- TMPL_ELSE -->
783 <option value="<!-- TMPL_VAR NAME="categorycode" -->"><!-- TMPL_VAR NAME="categoryname" --></option>
784                                 <!-- /TMPL_IF -->
785                                 <!-- TMPL_IF NAME="__last__" -->
786                                 </optgroup>
787                                 <!-- /TMPL_IF -->
788             <!-- /TMPL_LOOP -->
789        <!-- /TMPL_LOOP -->
790        </select>
791     </li>
792     <li>
793       <!-- TMPL_IF NAME="mandatorysort1" -->
794         <label for="sort1" class="required">
795       <!-- TMPL_ELSE -->
796         <label for="sort1">
797       <!-- /TMPL_IF-->
798       Sort 1: </label>
799       <!--TMPL_IF NAME="CGIsort1" --> 
800         <!-- TMPL_VAR NAME="CGIsort1" -->
801       <!--TMPL_ELSE-->
802         <input  type="text" id="sort1" name="sort1" size="20"  value="<!-- TMPL_VAR NAME="sort1" -->" />
803           <!-- TMPL_IF NAME="mandatorysort1" --><span class="required">Required</span><!-- /TMPL_IF -->
804       <!-- /TMPL_IF -->   
805     </li>
806     <li>
807     <!-- TMPL_IF NAME="mandatorysort2" -->
808     <label for="sort2" class="required">
809     <!-- TMPL_ELSE -->
810     <label for="sort2">
811     <!-- /TMPL_IF-->
812     Sort 2: </label>
813     <!--TMPL_IF NAME="CGIsort2" --> 
814       <!-- TMPL_VAR NAME="CGIsort2" -->
815     <!--TMPL_ELSE-->
816       <input  type="text" id="sort2" name="sort2" size="20"  value="<!-- TMPL_VAR NAME="sort2" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
817           <!-- TMPL_IF NAME="mandatorysort2" --><span class="required">Required</span><!-- /TMPL_IF -->
818     <!-- /TMPL_IF --> 
819     </li>
820         </ol>
821   </fieldset>
822         <fieldset class="rows" id="memberentry_subscription">
823         <legend>Library set-up</legend><ol>
824                 <li>
825                         <!-- TMPL_IF NAME="mandatorydateenrolled" -->
826                         <label for="dateenrolled" class="required">
827                         <!--TMPL_ELSE-->
828                         <label for="dateenrolled">
829                         <!-- /TMPL_IF-->
830                         Registration date: </label>
831                         <input type="text" id="dateenrolled" name="dateenrolled"  maxlength="10" size="10" <!-- TMPL_IF NAME="metric" -->onchange="CheckDate(document.form.dateenrolled);check_manip_date('verify');"<!-- /TMPL_IF--> value="<!-- TMPL_VAR NAME="dateenrolled" -->" />
832             <img src="<!-- TMPL_VAR Name="themelang" -->/lib/calendar/cal.gif" id="dateenrolled_button" alt="Show Calendar" />
833       <script language="JavaScript" type="text/javascript">
834         Calendar.setup(
835           {
836             inputField : "dateenrolled",
837             ifFormat : "<!-- TMPL_VAR NAME="DHTMLcalendar_dateformat" -->",
838             button : "dateenrolled_button"
839           }
840         );
841       </script>
842                 <!-- TMPL_IF NAME="mandatorydateenrolled" --><span class="required">Required</span><!-- /TMPL_IF -->
843                 <!-- TMPL_IF NAME="ERROR_dateenrolled" --><span class="required">(Error)</span><!-- /TMPL_IF -->
844                 <div class="hint"><!-- TMPL_INCLUDE NAME="date-format.inc" --></div>
845                 </li>
846                 <li>
847                         <!-- TMPL_IF NAME="mandatorydateexpiry" -->
848                         <label for="dateexpiry" class="required">
849                         <!--TMPL_ELSE-->
850                         <label for="dateexpiry">
851                         <!-- /TMPL_IF-->
852                         Expiry date (leave blank for auto calc) </label>
853                         <input type="text" id="dateexpiry" name="dateexpiry" maxlength="10"  size="10" <!-- TMPL_IF NAME="metric" -->onchange="CheckDate(document.form.dateexpiry);check_manip_date('verify');"<!-- /TMPL_IF--> value="<!-- TMPL_UNLESS NAME="opadd" --><!-- TMPL_VAR NAME="dateexpiry" --><!-- /TMPL_UNLESS -->" />
854             <img src="<!-- TMPL_VAR Name="themelang" -->/lib/calendar/cal.gif" id="dateexpiry_button" alt="Show Calendar" />
855       <script language="JavaScript" type="text/javascript">
856         Calendar.setup(
857           {
858             inputField : "dateexpiry",
859             ifFormat : "<!-- TMPL_VAR NAME="DHTMLcalendar_dateformat" -->",
860             button : "dateexpiry_button"
861           }
862         );
863       </script>
864                 <!-- TMPL_IF NAME="mandatorydateexpiry" --><span class="required">Required</span><!-- /TMPL_IF -->
865                 <!-- TMPL_IF NAME="ERROR_dateexpiry" --><span class="required">(Error)</span><!-- /TMPL_IF -->
866                 <div class="hint"><!-- TMPL_INCLUDE NAME="date-format.inc" --></div>
867                 </li>
868                 <li>
869                         <!-- TMPL_IF NAME="mandatoryopacnote" -->
870                                 <label for="opacnote" class="required">
871                         <!--TMPL_ELSE-->
872                                 <label for="opacnote">
873                         <!-- /TMPL_IF-->        
874                         OPAC note: </label>
875                         <textarea id="opacnote" name="opacnote" cols="55" rows="5"><!-- TMPL_VAR NAME="opacnote" --></textarea>
876                         <div class="hint">This message appears on this patron's user page in the OPAC</div>
877           <!-- TMPL_IF NAME="mandatoryopacnote" --><span class="required">Required</span><!-- /TMPL_IF -->
878                 </li>
879                 <li>
880                         <!-- TMPL_IF NAME="mandatoryborrowernotes" -->  
881                                 <label for="borrowernotes" class="required">
882                         <!--TMPL_ELSE-->
883                                 <label for="borrowernotes">
884                         <!-- /TMPL_IF-->
885                         Circulation note: </label>
886                         <textarea id="borrowernotes" name="borrowernotes" cols="55" rows="5"><!-- TMPL_VAR NAME="borrowernotes" --></textarea>
887                         <div class="hint">This message displays when checking out to this patron</div>
888           <!-- TMPL_IF NAME="mandatoryborrowernotes" --><span class="required">Required</span><!-- /TMPL_IF -->
889                 </li>
890                 </ol>
891         </fieldset>
892         <fieldset class="rows" id="memberentry_userid">
893                 <legend>OPAC login</legend><ol>
894                 <li>
895                         <!-- TMPL_IF NAME="mandatoryuserid" -->
896                         <label for="userid" class="required">
897                         <!--TMPL_ELSE-->
898                         <label for="userid">
899                         <!-- /TMPL_IF-->
900                         OPAC Login: </label>
901
902 <!-- TMPL_IF NAME="NoUpdateLogin" -->
903 <input type="text" id="userid" name="userid" size="20" disabled="disabled" value="<!-- TMPL_IF NAME="opduplicate" --><!--TMPL_ELSE--><!-- TMPL_VAR NAME="userid" --><!-- /TMPL_IF -->" />
904 <!-- TMPL_ELSE -->
905 <input type="text" id="userid" name="userid" size="20" value="<!-- TMPL_IF NAME="opduplicate" --><!--TMPL_ELSE--><!-- TMPL_VAR NAME="userid" --><!-- /TMPL_IF -->" />
906 <!-- /TMPL_IF -->
907
908           <!-- TMPL_IF NAME="mandatoryuserid" --><span class="required">Required</span><!-- /TMPL_IF -->
909                 </li>
910                 <li>
911                         <!-- TMPL_IF NAME="mandatorypassword" -->
912                         <label for="password" class="required">
913                         <!--TMPL_ELSE-->
914                         <label for="password">
915                         <!-- /TMPL_IF-->
916                         Password: </label>
917                         <!--TMPL_IF NAME="opadd"-->
918                         <!-- TMPL_IF NAME="NoUpdateLogin" -->
919                                 <input type="text" id="password" name="password" size="20"  disabled="disabled" value="<!-- TMPL_IF NAME="opduplicate" --><!--TMPL_ELSE--><!-- TMPL_VAR NAME="password" --><!-- /TMPL_IF -->" />
920 <!-- TMPL_ELSE -->
921                                 <input type="text" id="password" name="password" size="20" value="<!-- TMPL_IF NAME="opduplicate" --><!--TMPL_ELSE--><!-- TMPL_VAR NAME="password" --><!-- /TMPL_IF -->" />
922 <!-- /TMPL_IF -->
923                         <!--TMPL_ELSE-->
924                         <!--TMPL_IF NAME="password"-->
925                                 <!-- TMPL_IF NAME="NoUpdateLogin" -->
926                                         <input type="text" id="password" name="password" size="20"  disabled="disabled" value="****" />
927                                 <!-- TMPL_ELSE -->
928                                         <input type="text" id="password" name="password" size="20" value="<!-- TMPL_IF NAME="opduplicate" --><!--TMPL_ELSE-->****<!-- /TMPL_IF -->" />
929                                 <!-- /TMPL_IF -->
930                         <!--TMPL_ELSE-->
931                                 <!-- TMPL_IF NAME="NoUpdateLogin" -->
932                                         <input type="text" id="password" name="password" size="20"  disabled="disabled" value="" />
933                                 <!-- TMPL_ELSE -->
934                                         <input type="text" id="password" name="password" size="20" value="" />
935                                 <!-- /TMPL_IF -->
936                         <!--/TMPL_IF-->
937                         <!--/TMPL_IF-->
938           <!-- TMPL_IF NAME="mandatorypassword" --><span class="required">Required</span><!-- /TMPL_IF --><!-- TMPL_IF NAME="ERROR_short_password" --><span class="required">Password is too short</span><!-- /TMPL_IF -->
939 <!-- TMPL_IF NAME="minPasswordLength" --><div class="hint">Minimum password length: <!-- TMPL_VAR NAME="minPasswordLength" --></div><!-- /TMPL_IF -->
940                 </li></ol>
941                 </fieldset>
942                 <!--this zones are not necessary in modif mode -->
943                 <!-- TMPL_UNLESS NAME="opadd" -->
944                 <fieldset class="rows">
945                         <legend>Patron Account Flags</legend>
946                         <ol class="radio">
947                         <!-- TMPL_LOOP NAME="flagloop" -->
948                                 <li><label class="radio" for="yes<!-- TMPL_VAR name="name" -->">
949                                 <!-- TMPL_IF EXPR="key eq 'gonenoaddress'" -->Gone no Address:<!-- /TMPL_IF -->
950                                 <!-- TMPL_IF EXPR="key eq 'debarred'" -->Debarred:<!-- /TMPL_IF -->
951                                 <!-- TMPL_IF EXPR="key eq 'lost'" -->Lost Card:<!-- /TMPL_IF -->
952                 </label>
953                                 <label for="yes<!-- TMPL_VAR NAME="name" -->">Yes </label>
954                                 <!-- TMPL_IF NAME="yes" -->
955                                 <input type="radio" id="yes<!-- TMPL_VAR NAME="name" -->" name="<!-- TMPL_VAR NAME="name" -->" value="1" checked="checked" />
956                                 <!-- TMPL_ELSE -->
957                                 <input type="radio" id="yes<!-- TMPL_VAR NAME="name" -->" name="<!-- TMPL_VAR NAME="name" -->" value="1" />
958                                 <!-- /TMPL_IF -->
959                                 <label for="no<!-- TMPL_VAR NAME="name" -->">No </label>
960                                 <!-- TMPL_IF NAME="no" -->
961                                 <input type="radio" id="no<!-- TMPL_VAR NAME="name" -->" name="<!-- TMPL_VAR NAME="name" -->" value="0" checked="checked"/>
962                                 <!-- TMPL_ELSE -->
963                                 <input type="radio" id="no<!-- TMPL_VAR NAME="name" -->" name="<!-- TMPL_VAR NAME="name" -->" value="0" />
964                                 <!-- /TMPL_IF -->
965
966 </li>
967                         <!-- /TMPL_LOOP -->
968                         </ol>
969                         </fieldset>
970                 <!-- /TMPL_UNLESS -->   
971
972 <!-- /TMPL_IF -->
973
974 <!-- TMPL_IF NAME="step_4" --><!-- TMPL_IF NAME="ExtendedPatronAttributes" --><!-- TMPL_UNLESS NAME="no_patron_attribute_types" -->
975   <fieldset class="rows" id="memberentry_patron_attributes">
976     <input type="hidden" name="setting_extended_patron_attributes" value="1" />
977     <legend>Additional attributes and identifiers</legend>
978     <table>
979         <tr>
980             <th>Type</th>
981             <th colspan="2">Value</th>
982         </tr>
983         <!-- TMPL_LOOP NAME='patron_attributes' -->
984         <tr>
985             <td><!-- TMPL_VAR NAME="code" --> (<!-- TMPL_VAR NAME="description" -->)
986             </td>
987             <td>
988                 <input type="hidden" id="<!-- TMPL_VAR NAME="form_id" -->_code" name="<!-- TMPL_VAR NAME="form_id" -->_code" value="<!-- TMPL_VAR NAME="code" ESCAPE="HTML" -->" />
989                 <!-- TMPL_IF NAME="use_dropdown" -->
990                     <select id="<!-- TMPL_VAR NAME="form_id" -->" name="<!-- TMPL_VAR NAME="form_id" -->">
991                         <option value="" />
992                         <!-- TMPL_LOOP NAME="auth_val_loop" -->
993                             <!-- TMPL_IF NAME="selected" -->
994                                 <option value="<!-- TMPL_VAR NAME="authorised_value" -->" selected="selected">
995                                     <!-- TMPL_VAR NAME="lib" -->
996                                 </option>
997                             <!-- TMPL_ELSE -->
998                                 <option value="<!-- TMPL_VAR NAME="authorised_value" -->" >
999                                     <!-- TMPL_VAR NAME="lib" -->
1000                                 </option>
1001                             <!-- /TMPL_IF -->
1002                         <!-- /TMPL_LOOP -->
1003                     </select>
1004                 <!-- TMPL_ELSE -->
1005                     <input type="text" maxlength="64" value="<!-- TMPL_VAR NAME="value" -->"
1006                            id="<!-- TMPL_VAR NAME="form_id" -->" name="<!-- TMPL_VAR NAME="form_id" -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
1007                 <!-- /TMPL_IF -->
1008                 <!-- TMPL_IF NAME="password_allowed" -->
1009                     (Password: <input type="password" maxlength="64" value="<!-- TMPL_VAR NAME="password" -->"
1010                            id="<!-- TMPL_VAR NAME="form_id" -->_password" name="<!-- TMPL_VAR NAME="form_id" -->_password" />)
1011                 <!-- /TMPL_IF -->
1012             </td>
1013             <td>
1014                 <a href="#" onclick="clear_entry(this); return false;">Clear</a>
1015                 <!-- TMPL_IF NAME="repeatable" -->
1016                 <a href="#" onclick="clone_entry(this); return false;">New</a>
1017                 <!-- /TMPL_IF -->
1018             </td>
1019         </tr>
1020         <!-- /TMPL_LOOP -->
1021     </table>
1022   </fieldset>
1023 <!-- /TMPL_IF--><!-- /TMPL_IF --><!-- /TMPL_UNLESS -->
1024
1025 <!-- TMPL_IF NAME="step_5" --><!-- TMPL_IF NAME="EnhancedMessagingPreferences" -->
1026   <fieldset class="rows" id="memberentry_messaging_prefs">
1027     <!-- TMPL_IF NAME="opadd" -->
1028     <!-- handle changing prefs if creating new patron and changing
1029          the patron category
1030     -->
1031     <script language="javascript" type="text/javascript">//<![CDATA[
1032        $(document).ready(function(){
1033             var message_prefs_dirty = false;
1034             $('#memberentry_messaging_prefs > *').change(function() {
1035                 message_prefs_dirty = true;
1036             });
1037             $('#categorycode').change(function() {
1038                 var categorycode = $(this).val();
1039                 if (message_prefs_dirty) {
1040                     if (!confirm('Change messaging preferences to default for this category?')) {
1041                         return;
1042                     }
1043                 }
1044                 $.getJSON('/cgi-bin/koha/members/default_messageprefs.pl?categorycode=' + categorycode,
1045                     function(data) {
1046                         $.each(data.messaging_preferences, function(i, item) {
1047                             var attrid = item.message_attribute_id;
1048                             var transports = ['email', 'rss', 'sms'];
1049                             $.each(transports, function(j, transport) {
1050                                 if (item['transport-' + transport] != ' ') {
1051                                     $('#' + transport + attrid).attr('checked', item['transport-' + transport]);
1052                                 } else {
1053                                     $('#' + transport + attrid).removeAttr('checked');
1054                                 }
1055                             });
1056                             if (item.digest && item.digest != ' ') {
1057                                 $('#digest' + attrid).attr('checked', item.digest);
1058                             } else {
1059                                 $('#digest' + attrid).removeAttr('checked');
1060                             }
1061                             if (item.takes_days == '1') {
1062                                 $('[name=' + attrid + '-DAYS]').val('' + item.days_in_advance);
1063                             }
1064                         });
1065                         message_prefs_dirty = false;
1066                     }
1067                 );
1068             });
1069         });
1070     //]]>
1071     </script>
1072     <!-- /TMPL_IF -->
1073     <input type="hidden" name="setting_messaging_prefs" value="1" />
1074     <legend>Patron messaging preferences</legend>
1075     <!-- TMPL_INCLUDE NAME="messaging-preference-form.inc" -->
1076     <!-- TMPL_IF NAME="SMSSendDriver" -->
1077         <p><label for="SMSnumber">SMS number:</label> 
1078           <input type="text" id="SMSnumber" name="SMSnumber" value="<!-- TMPL_VAR NAME="SMSnumber"  -->"<!--TMPL_IF NAME="opduplicate"--> onclick="this.value=''"<!-- /TMPL_IF --> />
1079         </p>
1080     <!-- /TMPL_IF -->
1081   </fieldset>
1082 <!-- /TMPL_IF --> <!-- /TMPL_IF -->
1083
1084     <fieldset class="action">
1085         <input type="submit" name="save" onclick="return check_form_borrowers();" value="Save" />
1086       <!-- TMPL_IF NAME="opadd" -->
1087        <a class="cancel" href="/cgi-bin/koha/members/member.pl">Cancel</a>
1088            <!-- TMPL_ELSE -->
1089           <a class="cancel" href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!-- TMPL_VAR NAME="borrowernumber" -->">Cancel</a>
1090            <!-- /TMPL_IF -->
1091     </fieldset>
1092 </form>
1093   
1094 </div>
1095 </div>
1096
1097 <!-- TMPL_UNLESS NAME="opadd" --><div class="yui-b">
1098 <!-- TMPL_INCLUDE NAME="members-menu.inc" -->
1099 </div><!-- /TMPL_UNLESS -->
1100 <!-- /TMPL_UNLESS -->
1101 </div>
1102 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
1103