diff --git a/themes/bootstrap/js/record.js b/themes/bootstrap/js/record.js
index d1364c748e25361c0e59949e3dacce86fa6242b7..1e358ed3bd893afbb2ed3bbcd6fce7496aa1a8b2 100644
--- a/themes/bootstrap/js/record.js
+++ b/themes/bootstrap/js/record.js
@@ -161,7 +161,7 @@ $(document).ready(function(){
   });
   // Place a Hold
   // Place a Storage Hold
-  $('.placehold,.placeStorageRetrievalRequest').click(function() {
+  $('.placehold,.placeStorageRetrievalRequest,.placeILLRequest').click(function() {
     var parts = $(this).attr('href').split('?');
     parts = parts[0].split('/');
     var params = deparam($(this).attr('href'));
@@ -225,4 +225,7 @@ $(document).ready(function(){
   Lightbox.addFormCallback('placeStorageRetrievalRequest', function() {
     document.location.href = path+'/MyResearch/StorageRetrievalRequests';
   });
+  Lightbox.addFormCallback('placeILLRequest', function() {
+    document.location.href = path+'/MyResearch/ILLRequests';
+  });
 });
diff --git a/themes/bootstrap/templates/record/illrequest.phtml b/themes/bootstrap/templates/record/illrequest.phtml
index e10a3a052f099b4c4ac078ed43f2b58305f1b1a5..0a3695bc755529688685128601bd4cd7c0db12b0 100644
--- a/themes/bootstrap/templates/record/illrequest.phtml
+++ b/themes/bootstrap/templates/record/illrequest.phtml
@@ -1,7 +1,4 @@
 <?
-    // Set up ill script:
-    $this->headScript()->appendFile("ill.js");
-
     // Set page title.
     $this->headTitle($this->translate('ill_request_place_text') . ': ' . $this->driver->getBreadcrumb());
 
@@ -13,7 +10,7 @@
 <p class="lead"><?=$this->transEsc('ill_request_place_text')?></p>
 <?=$this->flashmessages()?>
 <div id="ILLRequestForm" class="storage-retrieval-request-form">
-  <form action="" class="form-horizontal" method="post">
+  <form action="" name="placeILLRequest" class="form-horizontal" method="post">
 
     <? if (in_array("itemId", $this->extraFields)): ?>
       <div class="control-group">
@@ -119,8 +116,19 @@
   </form>
 </div>
 
-<script type="text/javascript">
-$(document).ready(function(){
-    setUpILLRequestForm('<?=$this->escapeHtml($this->driver->getUniqueId()) ?>');
-});
-</script>
+<?
+    // Set up ill script; we do this inline instead of in the header for lightbox compatibility:
+    $this->inlineScript()->appendFile('ill.js');
+
+    $js = <<<JS
+        if ($.isReady) {
+            setUpILLRequestForm("{$this->escapeHtml($this->driver->getUniqueId())}");
+        } else {
+            $(document).ready(function(){
+                setUpILLRequestForm("{$this->escapeHtml($this->driver->getUniqueId())}");
+            });
+        }
+JS;
+
+    echo $this->inlineScript()->appendScript($js);
+?>