<!-- Script that converts the query string into valid parameter -->
<script type="text/javascript">
function searchPrimo() {
document.getElementById("primoQuery").value = "any,contains," + document.getElementById("primoQueryTemp").value;
document.forms["searchForm"].submit();
}
</script>
<div style="background-color: #A41E35; padding: 4rem; max-width: 100%;">
<h2 style="color:#fff; margin: 1.1rem;">START YOUR SEARCH HERE!</h2>
<!-- Fill in Highlighted Parameters -->
<form id="simple" name="searchForm" method="get" target="_self" action="https://temple.primo.exlibrisgroup.com/discovery/search" enctype="application/x-www-form-urlencoded; charset=utf-8" onsubmit="searchPrimo()">
<input type="hidden" name="vid" value="01TULI_INST:TUJ">
<input type="hidden" name="tab" value="Everything_TUJ">
<input type="hidden" name="search_scope" value="TUJ_and_CI">
<!-- Fixed parameters -->
<input type="hidden" name="query" id="primoQuery">
<input type="text" id="primoQueryTemp" placeholder="Search for books, articles, journals, and videos..." value="" size="65" style="color:#000; margin: 1.1rem; width: 87%;">
<!-- Search Button -->
<input id="go" title="Search" onclick="searchPrimo()" type="button" value="Search" alt="Search" style="height:4rem; padding:8px; font-size:16px; font-weight: bold;background: #A41E35;color:#fff; border:2px solid #fff; font-family: 'Roboto'; vertical-align: top; margin: 1.1rem;">
</form>
</div>