<!ENTITY common.enter.accesskey "E">
<!ENTITY common.enter_barcode.description 'Enter the item barcode:'>
<!ENTITY common.title "Title">
+<!ENTITY common.journal.title "Journal Title">
<!ENTITY common.author "Author">
<!ENTITY common.subject "Subject">
<!ENTITY common.series "Series">
setSelector(_ts, getStype());
setSelector(_fs, getForm());
+ /* If searching for journal title, set it to journal title */
+ if (getStype() == 'title' && getBibLevel() == 's') {
+ dojo.byId('jtitle').selected = true;
+ }
+
depthSelInit();
args[PARAM_DEPTH] = d;
args[PARAM_FORM] = _fs.options[_fs.selectedIndex].value;
+ /* Set the bib level to 's' for serials if the magic "Journal title" has ben chosen */
+ if (_ts.options[_ts.selectedIndex].id == 'jtitle') {
+ args[PARAM_BIBLEVEL] = 's';
+ }
+
if($('opac.result.limit2avail')) {
args[PARAM_AVAIL] = ($('opac.result.limit2avail').checked) ? 1 : '';
if( (val = getSelectorVal($('opac.result.sort'))) ) {
<select id='search_type_selector'>
<option value='keyword' selected='selected'>&common.keyword;</option>
<option value='title'>&common.title;</option>
+ <option value='title' id='jtitle'>&common.journal.title;</option>
<option value='author'>&common.author;</option>
<option value='subject'>&common.subject;</option>
<option value='series'>&common.series;</option>