<!ENTITY rdetail.copyInfo.local "View Copy Information for this location only">
<!ENTITY rdetail.copyInfo.all "View copy information for all libraries">
<!ENTITY rdetail.copyInfo.actions "Actions">
+<!ENTITY rdetail.copyInfo.QRCode "QR Code">
<!ENTITY rdetail.copyInfo.print "Print Call Numbers for this library">
<!ENTITY rdetail.copyInfo.details "Copy Details">
<!ENTITY rdetail.copyInfo.browse "Browse Call Numbers">
var rdetailDisplaySerialHoldings = true;
var rdetailEnableRefWorks = false;
var rdetailRefWorksHost = 'http://www.refworks.com';
+var rdetailEnableQRCode = false;
/* vars vars vars */
var record = null;
unHideMe( $n(row, 'browse') )
$n(row, 'browse').setAttribute('href', bHref);
+if (rdetailEnableQRCode) {
+ unHideMe( $('QRColumn') );
+ unHideMe( $n(row, 'QR_cell') );
+ tit = record.title();
+ $n(row, 'QR_cell').appendChild(elem('img', {src:'http://chart.apis.google.com/chart?chs=75x75&cht=qr&chld=L|0&chl='+tit+'%0A'+orgNode.name()+' '+cl+'%0A'+cn}));
+ $n(row, 'QR_cell').appendChild(elem('p'));
+}
+
if(isXUL()) {
unHideMe($n(row, 'hold_div'));
$n(row, 'hold').onclick = function() {
<td class='rdetail_copy_info_header_cell'>&rdetail.copyInfo.callnumber;</td>
<td name='rdetail_copylocation_header' class='rdetail_copy_info_header_cell hide_me'>&rdetail.copyInfo.copylocation;</td>
<td class='rdetail_copy_info_header_cell'>&rdetail.copyInfo.actions;</td>
+ <td id='QRColumn' class='rdetail_copy_info_header_cell hide_me'>&rdetail.copyInfo.QRCode;</td>
<td nowrap='nowrap' class='rdetail_copy_info_header_cell' id='rdetail_copy_info_status'>
<div name='rdetail_status_cell'> </div>
</td>
class='classic_link'>&rdetail.copyInfo.hold;</a>
</div>
</td>
+ <td name='QR_cell' class='hide_me'></td>
<td nowrap='nowrap' class='rdetail_copy_count_cell vertical'
name='rdetail_copy_count_cell'> </td>
</tr>