Minerva Encore Search Widget

You can add an Minerva search box to your webpages. Just copy the code below and paste it into your webpage where you want the search to appear.

Minerva Encore Search Widget Code:

Reference the following Javascript in the <head> element of your web page:

<script type="text/javascript" 
src="http://minerva.maine.edu/screens/encorewidget.js">
</script>

Add the Encore search box to your web page:

<form name="encoreform" action="" onsubmit="return searchEncore()"> 
  <!-- REQUIRED Search String with id="encoreSearchInput" -->
  <input id="encoreSearchInput" type="text"/>
  <!-- END Search String-->
  <!-- SCOPES -->
  <input type="hidden" id="encoreBase" value="http://searchminerva.maine.edu/iii/encore/search/" />
  <input type="submit" value="SUBMIT" />
</form>

If you want to add a drop-down menu for your library’s scopes, you can add the following code in place of the “<– SCOPES –> above.

<!-- SCOPE -->
<label for="encoreSearchLocation">
<select name="encoreSearchLocation" id="encoreSearchLocation" tabindex="3" >
<option value="" selected="selected">=Search Entire Minerva Catalog=</option>
<option value="__Ff:facetcollections:136:136:Prince Memorial Library">Prince Memorial Library</option>
<option value="__Ff:facetcollections:137:137:Prince Children's Collection">Prince Children's Collection</option>
</select>
</label>
<!-- END SCOPE -->