Showing source for: https://library.colgate.edu/
Duration: 0.451304s
Server: III 100

<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<!-- Rel 2009B Example Set -->
<!-- Updated: 09 June 2010 -->

<head>
<link rel="stylesheet" type="text/css" href="/scripts/ProStyles.css" />
<link rel="stylesheet" type="text/css" href="/screens/styles.css" />
<script type="text/javascript" src="/scripts/elcontent.js">
</script>
<script type="text/javascript" src="/scripts/common.js">
</script>
<script type="text/javascript" src="/scripts/features.js">
</script>
<script type="text/javascript" src="/scripts/webbridge.js">
</script>

    <title>Colgate University Libraries Catalog</title>
    <link href="/screens/styles.css" rel="stylesheet" type="text/css" />
    <link href="/screens/reset.css" rel="stylesheet" type="text/css" />
    <link href="/screens/colgate.css" rel="stylesheet" type="text/css" />
    <link href="/screens/normalize.css" rel="stylesheet" type="text/css" />
    <link href="/screens/styles_print.css" media="print" rel="stylesheet" type="text/css" />
    <link href="/screens/colgate-searchpage.css" rel="stylesheet" type="text/css" />
    <link href="/screens/jquery.fancybox.css" rel="stylesheet" type="text/css" />
    <link href="/screens/bootstrap.min.css" rel="stylesheet" type="text/css" />
    <meta content="width=device-width" name="viewport" />
    <script src="/screens/jquery.js" type="text/javascript"></script>
    <script src="/screens/jquery-ui.min.js" type="text/javascript"></script>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js" type="text/javascript"></script>
    <script src="/screens/jquery.fancybox.pack.js" type="text/javascript"></script>
    <script src="/screens/jquery.easytabs.min.js" type="text/javascript"></script>
    <script src="/screens/jquery.hashchange.min.js" type="text/javascript"></script>
    <script src="/screens/jsinput.js" type="text/javascript"></script>
    <script src="/screens/setFooter.js" type="text/javascript"></script>
    <script src="/screens/modernizr.custom.js" type="text/javascript"></script>
    <script src="/screens/bootstrap.min.js" type="text/javascript"></script>
    <script src="/screens/jquery-fancybox.pack.js" type="text/javascript"></script>
    <script type="text/javascript">
    function iiiSearchValidate() {
        try {
            if (document.getElementById('search').searcharg.value == null || document.getElementById('search').searcharg.value == "") {
                return false;
            }
        } catch (err) {}
        return true;
    }

    function iiiDoSubmit_1() {
        //getFormHandleForm() is in common.js
        var obj = getFormHandleForm(1);
        if (iiiSearchValidate()) {
            obj.submit();
        }
    }
    </script>
    <script src="/screens/iiilangswitch.js" type="text/javascript"></script>
    <script type="text/javascript">
    $(document).ready(function() {
        $('#inner-container, #outer-container, #tab-container').easytabs();
    });
    </script>
    <style>
    /**
    * For modern browsers
    * 1. The space content is one way to avoid an Opera bug when the
    *    contenteditable attribute is included anywhere else in the document.
    *    Otherwise it causes space to appear at the top and bottom of elements
    *    that are clearfixed.
    * 2. The use of `table` rather than `block` is only necessary if using
    *    `:before` to contain the top-margins of child elements.
    */
    .cf:before, .cf:after {
        content:" ";
        /* 1 */
        display: table;
        /* 2 */
    }
    .cf:after {
        clear: both;
    }
    /**
    * For IE 6/7 only
    * Include this rule to trigger hasLayout and contain floats.
    */
    .cf {
        *zoom: 1;
    }
    li.tab {
        background-color: #EEEEEE;
        border-top-color: #999999;
        border-bottom-color: #333333;
        border-left-color: #999999;
        border-right-color: #999999;
    }
    a.active {
        background-color: white;
    }
    li.tab.active {
        background-color: white;
    }
    div.active {
        background-color: white;
        color: black;
    }
    </style>

    <script type="text/javascript" language="JavaScript1.3">
    <!--
    //  IMPORTANT NOTE: The following Javascript functions are provided for example purposes only.
    //  Unless you have experience working with Javascript, please refer to your local technical
    //  resources for assistance with modification.
    //  If many of your patrons use an out of date browser (such as Netscape 4.7) with incomplete support
    //  for Javascript, you may wish to use srchhelp_X_nojavascript.html instead. Simply rename this file
    //  srchhelp_X_javascript.html and then rename that file srchhelp_X.html.
    // -->

    <!-- Hide the JavaScript from browsers which do not understand SCRIPT tag -->

    <!-- Initialize arrays used in following functions -->
    var searchType = new Array();
    var searchName = new Array();
    var searchValue = new Array();
    var limitName = new Array();
    var limitValue = new Array();

    function processLimit()
    <!-- last updated : January 4, 2005 -->
    <!--
    // This function is called by the submitSearch function.
    // This function processes all limit form elements in the current page.
    // Any form element used to apply a limit to the search entered by the user is 
    // considered a limit form element for the purpose of this function.
    // Innovative recommends always using tokens to insert limit form elements into HTML. 
    // For more information on tokens see the User Manual or http://csdirect.iii.com .
    // All limit form elements must appear contiguously within the HTML and must be enclosed
    // in the following hidden form tags.
    // The user must include the following hidden form element before the first 
    // limit form element appearing in the search form:
    // <INPUT TYPE="hidden" NAME="startLimit">
    // The following hidden form element must be included after the last limit form
    // element appearing in the search form:
    // <INPUT TYPE="hidden" NAME="endLimit">
    // -->
    {
        var limitWorkString = "";
        for (var i = 0; i < limitName.length; i++) {
            <!-- 
            //  The following statement processes date form elements.
            //  Date limits must be processed differently since they contain text form elements.
            // -->
            if (limitName[i] == "Da" || limitName[i] == "Db") {
                limitWorkString += "&" + limitName[i] + "=" + limitValue[i];
                continue;
            }
            <!-- The following statement processes all selection list form elements. --> 
            if (limitValue[i] != 0) {
                limitWorkString += "&" + limitName[i] + "=" + limitValue[i];
            } else if (limitName[i] != "availlim") {
                limitWorkString += "&" + limitName[i] + "=";
            }
        }
        <!-- The following statement checks for the availability limit. -->
        if (document.search.availlim != null) {
            if (document.search.availlim.checked) {
                limitWorkString += "&availlim=1";
            }
        }
        return limitWorkString;
    }

    function processSearch()
    <!-- version 1 : January 22, 2003 -->
    <!--
    // This function is called by the submitSearch function.
    // This function processes field limit, search text, and boolean form elements in the current page.
    // Any form element which allows the user to choose a field limit, type search text, or choose
    // a boolean operator is considered a search form element for the purpose of this function.
    // All search form elements must appear contiguously within the HTML and must be enclosed
    // in the following hidden form tags.
    // The user must include the following hidden form element before the first search
    // form element appearing in the search form:
    // <INPUT TYPE="hidden" NAME="startSearch">
    // The following hidden form element must be included after the last search form
    // element appearing in the search form:
    // <INPUT TYPE="hidden" NAME="endSearch">
    // -->
    {
        var searchWorkString = "";
        for (var i = 0; i < searchName.length; i++) {
            if (searchName[i].indexOf("fieldLimit") != -1) {
                if ((searchValue[i] != 0) && (searchValue[i + 1].length != 0)) {
                    <!-- NOTE: This statement places parentheses around the input typed by the user. -->
                    searchWorkString += searchValue[i] + "(" + searchValue[i + 1] + ")";
                    i++;
                }
                continue;
            } else if (searchName[i].indexOf("searchText") != -1) {
                if (searchValue[i].length != 0) {
                    <!-- NOTE: This statement places parentheses around the input typed by the user. -->
                    searchWorkString += "(" + searchValue[i] + ")";
                }
                continue;
            } else if (searchName[i].indexOf("boolean") != -1) {
                if ((searchType[i + 2] == "text") && (searchValue[i + 2].length != 0)) {
                    searchWorkString += searchValue[i];
                }
                continue;
            } else {
                continue;
            }
        }
        return searchWorkString;
    }

    function submitSearch(searchForm)
    <!-- last updated : January 13, 2005 -->
    <!--
    // This function is called when the user clicks the submit button.
    // This function processes all form elements in the form named search and 
    // populates the arrays searchType, searchName, searchValue, limitName, limitValue
    // with data. It then passes the data to the functions processSearch and processLimit; please 
    // see the description of those functions for important information on the hidden form elements
    // within the form named search which are required for this function to work properly.
    // Finally, this function replaces the current page with a URL constructed based on the user's
    // form input.
    // -->
    {
        var isSearch = 0;
        var isLimit = 0;

        var searchString = "";
        var limitString = "";

        var searchArrayCounter = 0;
        var limitArrayCounter = 0;

        for (var i = 0; i < searchForm.elements.length; i++) {
            if (searchForm[i].name.indexOf("startSearch") != -1) {
                isSearch = 1;
                isLimit = 0;
                continue;
            } else if (searchForm[i].name.indexOf("startLimit") != -1) {
                isSearch = 0;
                isLimit = 1;
                continue;
            } else if (searchForm[i].name.indexOf("endSearch") != -1) {
                isSearch = 0;
                isLimit = 0;
                continue;
            } else if (searchForm[i].name.indexOf("endLimit") != -1) {
                isSearch = 0;
                isLimit = 0;
                continue;
            } else {
                if (isSearch == 1) {
                    searchName[searchArrayCounter] = searchForm[i].name;
                    if (searchForm[i].type == "select-one") {
                        searchType[searchArrayCounter] = "select-one";
                        searchValue[searchArrayCounter] = searchForm[i].options[searchForm[i].selectedIndex].value;
                        searchArrayCounter++;
                        continue;
                    } else if (searchForm[i].type == "text") {
                        searchType[searchArrayCounter] = "text";
                        searchValue[searchArrayCounter] = searchForm[i].value;
                        searchArrayCounter++;
                        continue;
                    } else {
                        searchType[searchArrayCounter] = "";
                        searchValue[searchArrayCounter] = "";
                        searchArrayCounter++;
                        continue;
                    }
                } else if (isLimit == 1) {
                    limitName[limitArrayCounter] = searchForm[i].name;
                    if (searchForm[i].type == "select-one") {
                        limitValue[limitArrayCounter] = searchForm[i].options[searchForm[i].selectedIndex].value;
                        limitArrayCounter++;
                        continue;
                    } else if (searchForm[i].type == "select-multiple") {
                        for (var m = 0; m < searchForm[i].options.length; m++) {
                            if (searchForm[i].options[m].selected) {
                                limitName[limitArrayCounter] = searchForm[i].name;
                                limitValue[limitArrayCounter] = searchForm[i].options[m].value;
                                limitArrayCounter++;
                            }
                        }
                        continue;
                    } else if (searchForm[i].type == "text") {
                        limitValue[limitArrayCounter] = searchForm[i].value;
                        limitArrayCounter++;
                        continue;
                    } else {
                        limitValue[limitArrayCounter] = "";
                        limitArrayCounter++;
                        continue;
                    }
                } else {
                    continue;
                }
            }
        }
        searchString = processSearch();
        limitString = processLimit();

        searchString = encodeURI(searchString);
        <!--
        // Replace statements convert certain indexed special characters from the original
        // character to their escaped form. Each statement here must have a corresponding
        // statement in two places in the parseSearch function.
        // ++ is converted to %2B%2B (example, c++)
        // NOTE: do not convert single + to %2B or the scripts will break
        // # is converted to %23
        // & is converted to %26
        // / is converted to %2F
        //-->
        if (searchString.indexOf("++") != -1) {
            searchString = searchString.replace(/\+\+/, "%2B%2B");
        }
        if (searchString.indexOf("#") != -1) {
            searchString = searchString.replace(/#/g, "%23");
        }
        if (searchString.indexOf("&") != -1) {
            searchString = searchString.replace(/&/g, "%26");
        }
        if (searchString.indexOf("?") != -1) {
            searchString = searchString.replace(/\?/g, "%3F");
        }
        if (searchString.indexOf("/") != -1) {
            searchString = searchString.replace(/\//g, "%2F");
        }
        window.location.href = "http://" + location.host + "/search/X?" + searchString + limitString;
        return false;
    }

    function modifySearch()
    <!-- last updated : October 29, 2004 -->
    <!--
    // This function takes the URL of the current page and extracts all search data into the 
    // array modifyString3. It then passes that information to the function parseSearch.
    // -->
    {
        var modifyString1 = decodeURI(location.search);
        var modifyString2 = new Array();
        var modifyString3 = new Array();
        var modifyString2 = modifyString1.split("&");
        if (modifyString2[0].indexOf("?NOSRCH=") != -1) {
            var modifyString3 = modifyString2[0].split("?NOSRCH=");
        } else {
            var modifyString3 = modifyString2[0].split("?");
        }
        parseSearch(modifyString3[1]);
    }

    function parseSearch(str)
    <!-- last updated : November 17, 2004 -->
    <!--
    // This function is called by the function modifySearch.
    // This function takes the relevant portion of the URL of the current page and attempts to place
    // all data within that URL back into the appropriate form elements on the page within the 
    // form named search. If the function can't find appropriately named form elements into which
    // to place data, it puts everything into the text element named searchText1 in the form named search.
    // -->
    {
        var temp = "";
        var elementName = "";
        var fieldLimitCounter = 1;
        var searchTextCounter = 1;
        var booleanCounter = 1;

        <!-- Convert %3A to : for proper display and processing of field limits -->
        str = str.replace(/%3A/g, ":");
        <!-- Store original search string in case we can't parse out the search elements -->
        var origSearch = str;

        for (var i = 0; i < str.length; i++) {
            if (str.charAt(i) == ":") {
                elementName = "fieldLimit" + fieldLimitCounter;
                temp = str.charAt(i - 1) + str.charAt(i);
                for (var m = 0; m < document.search.length; m++) {
                    if (document.search.elements[m].name == elementName) {
                        for (var n = 0; n < document.search.elements[m].length; n++) {
                            if (document.search.elements[m].options[n].value == temp) {
                                document.search.elements[m].options[n].selected = true;
                                fieldLimitCounter++;
                                break;
                            } else {
                                continue;
                            }
                        }
                        break;
                    } else {
                        continue;
                    }
                }
                continue;
            } else if (str.charAt(i) == "(") {
                temp = "";
                elementName = "searchText" + searchTextCounter;
                for (var m = 0; m < document.search.length; m++) {
                    if (document.search.elements[m].name == elementName) {
                        for (i = i + 1; i < str.length; i++) {
                            if (str.charAt(i) == ")") {
                                i++;
                                break;
                            } else {
                                temp += str.charAt(i);
                                continue;
                            }
                        }
                        searchTextCounter++;
                        <!--
                        // Replace statements convert certain indexed special characters from escaped form to the
                        // original character. Each statement here must have a corresponding statement in the
                        // submitSearch function and both here and at the end of the parseSearch function.
                        // %2B is converted to +
                        // %23 is converted to #
                        // %26 is converted to &
                        // %2F is converted to / 
                        //-->
                        temp = temp.replace(/%2B/g, "+");
                        temp = temp.replace(/%23/g, "#");
                        temp = temp.replace(/%26/g, "&");
                        temp = temp.replace(/%3F/g, "?");
                        temp = temp.replace(/%2F/g, "/");
                        document.search.elements[m].value = temp;
                        break;
                    } else {
                        continue;
                    }
                }
                continue;
            } else {
                temp = "";
                elementName = "boolean" + booleanCounter;
                for (i = i; i < str.length; i++) {
                    if (str.charAt(i + 1) == ":" || str.charAt(i + 1) == "(") {
                        break;
                    } else {
                        temp += str.charAt(i);
                        continue;
                    }
                }
                if (temp.length > 0) {
                    for (var m = 0; m < document.search.length; m++) {
                        if (document.search.elements[m].name == elementName) {
                            for (var n = 0; n < document.search.elements[m].length; n++) {
                                if (document.search.elements[m].options[n].value.indexOf(temp) != -1) {
                                    document.search.elements[m].options[n].selected = true;
                                    booleanCounter++;
                                    temp = "";
                                    break;
                                } else {
                                    continue;
                                }
                            }
                            fieldLimitCounter = booleanCounter;
                            searchTextCounter = booleanCounter;
                            break;
                        } else {
                            continue;
                        }
                    }
                    if (temp.length > 0) {
                        <!-- The following statement replaces + with space for display -->
                        origSearch = origSearch.replace(/\+/g, " ");
                        <!--
                        // Replace statements convert certain indexed special characters from escaped form to the
                        // original character. Each statement here must have a corresponding statement in the
                        // submitSearch function and both here and earlier in the parseSearch function.
                        // %2B is converted to +
                        // %23 is converted to #
                        // %26 is converted to &
                        // %2F is converted to / 
                        //-->
                        origSearch = origSearch.replace(/%2B%2B/g, "++");
                        origSearch = origSearch.replace(/%23/g, "#");
                        origSearch = origSearch.replace(/%26/g, "&");
                        origSearch = origSearch.replace(/%3F/g, "?");
                        origSearch = origSearch.replace(/%2F/g, "/");
                        <!--
                        // If we get to this point, parseSearch has not been able to parse the user's search.
                        // In some cases, fieldLimit1 will have been found and set. Because we are 
                        // writing the entire original search into searchText1, we need to reset fieldLimit1
                        // to avoid possible conflicts with the data in searchText1. The for loop below finds
                        // the "any field" option in fieldLimit1 and selects it. Then we put the original search
                        // string into searchText1.
                        //-->
                        for (var n = 0; n < document.search.fieldLimit1.length; n++) {
                            if (document.search.fieldLimit1.options[n].value == "") {
                                document.search.fieldLimit1.options[n].selected = true;
                            }
                        }
                        document.search.searchText1.value = origSearch;
                    }
                    continue;
                } else {
                    continue;
                }
            }
        }
    }

    function gotoDestination(path, port) {
        if (port == null) port = 80;
        var url = "http://" + location.hostname + ":" + port + path;
        window.open(url);
    }

    function GoBack() {
        history.back()
    }
    //-->
    
    table {
    color:#ffffe0;}
    </script>



</head>

<body class="catalog" onload="document.forms[0].elements[0].focus();">
    <div id="bd">
      
<br />
        <div id="main">
            <div id="logo">
                <table>
                    <tr>
                        <td width="80%">
                            <a href="http://cul.colgate.edu/">

                            <h2>Colgate
                            University Libraries
                            </h2>

                           </a>
                        </td>

                        <td width="20%">
                            <p>
                              
                                
                            </p>
                        </td>
                    </tr>
                </table>
            </div>

         <ul id="MenuBar">
                <li><a href="http://cul.colgate.edu" title="Library Homepage">
                Home&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</li>

               
            </ul>

           
        </div>
    </div>
    <br />

    <div class="tab-container" id="outer-container">
        <ul class='etabs'>
            
            <li class='tab'><a href="#title" onClick="_gaq.push(['_trackEvent', 'Formuse', 'titleInternallink', 'title;titlesearch', 'null', true]);">Title</a>
            </li>

            <li class='tab'><a href="#author" onClick="_gaq.push(['_trackEvent', 'Formuse', 'authorInternallink', 'author;authorsearch', 'null', true]);">Author</a>
            </li>

            <li class='tab'><a href="#subject" onClick="_gaq.push(['_trackEvent', 'Formuse', 'subjectInternallink', 'subject;subjectsearch', 'null', true]);">Subject</a>
            </li>

            <li class='tab'><a href="#advanced" onClick="_gaq.push(['_trackEvent', 'Formuse', 'advanceInternallink', 'advkeyword;advkeywordsearch', 'null', true]);">Advanced Keyword</a>
            </li>

            <li class='tab'><a href="#other" onClick="_gaq.push(['_trackEvent', 'Formuse', 'otherInternallink', 'other;othersearch', 'null', true]);">Additional Searches</a>
            </li>
        </ul>

        <div class="panel-container">
   
            <div id="title">
                <h2>Title Search Page</h2>

              <form action="/search/t" class="unpadded" method="get" >
            
                                 <input class="searchbox" id="Title" name="SEARCH" placeholder="Title..." size="45" type="text" aria-labelledby="Title"/>
                    <input id="searchbtn" name="searchbtn" type="submit" class="btn btn-default" value="Search"  />
                </form>
                                <br />

                <div class="col-lg-4">
                    <p>Searches ignore leading articles (A, An, The). Type as much or as little of the title as you want. For example:
                    </p>

                    <ul>
                        <li>merchant of venice</li>

                        <li>merchant of v</li>

                        <li>merchant</li>
                    </ul>
                </div>

                <div id="wrap">
                    <!--text beneath search bar-->

                    <div id="left_col">
                        <h3>Search for Journals</h3>

                        <p>&nbsp;&nbsp;
                            <a href="http://cul.colgate.edu/#quicktabs-search_tabs=2">
                                <button class="btn btn-default" type="button">Journal Finder</button>
                            </a>
                        </p>
                    </div>

                    <div id="right_col">
                        <h3>Search for Course Reserves</h3>

                        <p>
                            &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                            <a href="/search/r">
                                <button class="btn btn-default" type="button">Course Reserves</button>
                            </a>
                        </p>
                    </div>
                    <br />
                    <br />
                    <br />
                </div>
                <!-- Title -->
            </div>

            <div id="author">
                <h2>Author Search Page</h2>

                <form action="/search/a" class="unpadded" method="get">
                    <input class="searchbox" id="Author" name="SEARCH" placeholder="Author..." size="45" type="text" aria-labelledby="Author"/>
                    <input id="searchbtn" type="submit" class="btn btn-default" aria-labelledby="searchbtn" />
                </form>
                <br />

                <div>
                    <p>Type the author's or artist's last name first. For example:
                    </p>

                    <ul>
                        <li>shakespeare</li>

                        <li>shakespeare, william</li>

                        <li>angelou, m</li>
                    </ul>

                    <p>You may also type the name of an organization or governmental body. For example:</p>

                    <ul>
                        <li>United States Congress</li>

                        <li>American Medical Association</li>
                    </ul>
                </div>

                <div id="wrap">
                    <!--text beneath search bar-->

                    <div id="left_col">
                        <h3>Search for Journals</h3>

                        <p>&nbsp;&nbsp;
                            <a href="http://cul.colgate.edu/#quicktabs-search_tabs=2">
                                <button class="btn btn-default" type="button">Journal Finder</button>
                            </a>
                        </p>
                    </div>

                    <div id="right_col">
                        <h3>Search for Course Reserves</h3>

                        <p>
                            &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                            <a href="/search/r">
                                <button class="btn btn-default" type="button">Course Reserves</button>
                            </a>
                        </p>
                    </div>
                    <br />
                    <br />
                    <br />
                </div>
                <!-- Author -->
            </div>

            <div id="subject">
                <h2>Subject Search Page</h2>

                <form action="/search/d" class="unpadded" method="get">
                    <input class="searchbox" id="Subject" name="SEARCH" placeholder="Subject..." size="45" type="text"  aria-labelledby="Subject"/>
                    <input id="searchbtn" type="submit" class="btn btn-default" aria-labelledby="searchbtn" />
                </form>
                <br />

                <div>
                    <p>Type as much or as little of the subject as you want. For example:</p>

                    <ul>
                        <li>children's rights</li>

                        <li>motion pictures</li>

                        <li>United States History Civil War, 1861-1865</li>
                    </ul>

                    <p>The subject search uses a specific, controlled vocabulary for describing Library material. Searching here lets you browse through the terms that are used in this catalog. If you do not find what you are looking for in the subject index, <a href="http://cul.colgate.edu/askalibrarian">ask
                    a Librarian for assistance.</a>
                    </p>
                </div>
                <!--text beneath search bar-->

                <div id="wrap">
                    <!--text beneath search bar-->

                    <div id="left_col">
                        <h3>Search for Journals</h3>

                        <p>&nbsp;&nbsp;
                            <a href="http://cul.colgate.edu/#quicktabs-search_tabs=2">
                                <button class="btn btn-default" type="button">Journal Finder</button>
                            </a>
                        </p>
                    </div>

                    <div id="right_col">
                        <h3>Search for Course Reserves</h3>

                        <p>
                            &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                            <a href="/search/r">
                                <button class="btn btn-default" id="Course Reserves" type="button">Course Reserves</button>
                            </a>
                        </p>
                    </div>
                    <br />
                    <br />
                    <br />
                </div>
                <!-- Subject -->
            </div>

            <div id="advanced">

                <h2>Advanced Search</h2>
<P> Go to <a href="/search/X">Advanced Search Form</a>
               
            </div>
            <!-- Advanced Search -->

            <div id="other">
                <h2>Other Searches</h2>
                <!-- content -->

                <div class="tab-container" id="inner-container">
                    <ul class='etabs'>
                        <li class='tab'><a href="#lccall" onClick="_gaq.push(['_trackEvent', 'Formuse', 'lcCallInternallink', 'lccall;lccall', 'null', true]);">LC Call Number</a>
                        </li>

                        <li class='tab'><a href="#nonlccall" onClick="_gaq.push(['_trackEvent', 'Formuse', 'nonlcInternallink', 'nonlc;nonlcsearch', 'null', true]);">Other Call
                        Numbers</a>
                        </li>

                        <li class='tab'><a href="#govdoccall" onClick="_gaq.push(['_trackEvent', 'Formuse', 'govdocsInternallink', 'govdocs;govdocssearch', 'null', true]);">GovDocs
                        Number</a>
                        </li>

                        <li class='tab'><a href="#genre" onClick="_gaq.push(['_trackEvent', 'Formuse', 'genreInternallink', 'genre;genresearch', 'null', true]);">Genre</a>
                        </li>

                        <li class='tab'><a href="#isbn" onClick="_gaq.push(['_trackEvent', 'Formuse', 'isbnInternallink', 'isbn;isbnsearch', 'null', true]);">ISBN, ISSN</a>
                        </li>

                        <li class='tab'><a href="#oclc" onClick="_gaq.push(['_trackEvent', 'Formuse', 'oclcInternallink', 'oclc;oclcsearch', 'null', true]);">OCLC</a>
                        </li>
                    </ul>

                    <div class="panel-container">
                        <div id="lccall">
                            <h3>Library of Congress Number Search</h3>

                            <form action="/search/c" class="unpadded" method="get">
                                <input class="searchbox" id="LOC" name="SEARCH" placeholder="Library of Congress..." size="45" type="text" aria-labelledby="LOC" />
                                <input id="searchbtn" name="searchbtn" type="submit" class="btn btn-default" aria-labelledby="searchbtn" />
                            </form>
                            <br />

                            <p>Type as much or as little of the call number as you want. For example:</p>

                            <ul>
                                <li>QA 402.6 R65 1986</li>

                                <li>QA 402</li>

                                <li>PS 3200</li>
                            </ul>
                        </div>

                        <div id="nonlccall">
                            <h3>Other Call Numbers Search</h3>

                            <form action="/search/m" class="unpadded" method="get">
                                <input class="searchbox" id="Other" name="SEARCH" placeholder="Other Call number..." size="45" type="text"  aria-labelledby="Other" />
                                <input id="searchbtn" name="searchbtn" type="submit" class="btn btn-default" aria-labelledby="searchbtn" />
                            </form>
                            <p>
                                This search will find materials that are labeled with any non-Library of Congress call numbers. These materials include:
                                <ul>
                                    <li>Some older materials labeled with Dewey Call numbers</li>
                                    <li>Music</li>
                                    <li>Special Collections Materials</li>
                                </ul>
                            </p>
                            <p>Type as much or as little of the call number as you want. For example:</p>

                            <ul>
                                <li>338</li>

                                <li>338.1</li>

                                <li>520</li>
                            </ul>
                        </div>

                        <div id="govdoccall">
                            <h3>Government Document Number Search</h3>

                            <form action="/search/g" class="unpadded" method="get">
                                <input class="searchbox" id="GovDoc" name="SEARCH" placeholder="Government Documents..." size="45" type="text" aria-labelledby="GovDoc" />
                                <input id="searchbtn" name="searchbtn" type="submit" class="btn btn-default" aria-labelledby="searchbtn" />
                            </form>

                            <p>Type as much or as little of the number as you want. Type punctuation for SUDOC numbers exactly as it appears. For example:</p>

                            <ul>
                                <li>NAS</li>

                                <li>NAS 1.2:AM 3/994</li>
                            </ul>
                        </div>

                        <div id="genre">
                            <h3>Genre</h3>

                            <form action="/search/j" class="unpadded" method="get">
                                <input class="searchbox" id="Genre" name="SEARCH" placeholder="Genre..." size="45" type="text"  aria-labelledby="Genre" />
                                <input id="searchbtn" name="searchbtn" type="submit" class="btn btn-default" aria-labelledby="searchbtn" />
                            </form>

                            <p>Type as much or as little of the Form or Genre as you want. For example:</p>

                            <ul>
                                <li>Detective and mystery films</li>

                                <li>Detective and mystery stories</li>

                                <li>Feature Films</li>
                            </ul>
                        </div>

                        <div id="isbn">
                            <h3>ISBN, ISSN, and Publisher Number Search</h3>

                            <form action="/search/i" class="unpadded" method="get">
                                <input class="searchbox" id="ISBN" name="SEARCH" placeholder="ISBN, ISSN..." size="45" type="text"  aria-labelledby="ISBN" />
                                <input id="searchbtn" name="searchbtn" type="submit" class="btn btn-default" aria-labelledby="searchbtn" />
                            </form>

                            <p>Type the ISBN or ISSN as it appears. Punctuation and spaces can be omitted if desired. For example:</p>

                            <ul>
                                <li>0060254920</li>

                                <li>0303-7207</li>
                            </ul>
                        </div>

                        <div id="oclc">
                            <h3>OCLC</h3>

                            <form action="/search/o" class="unpadded" method="get">
                                <input class="searchbox" id="OCLC" name="SEARCH" placeholder="OCLC..." size="45" type="text" aria-labelledby="OCLC"/>
                                <input id="searchbtn" name="searchbtn" type="submit" class="btn btn-default" aria-labelledby="searchbtn" />
                            </form>

                            <p>Type as much or as little of the OCLC number as you want. For example:</p>

                            <ul>
                                <li>1234567</li>

                                <li>26158752</li>
                            </ul>
                        </div>
                    </div>
                    <br />
                </div>
                <br />
                <br />
            </div>

            <br />
            <br />
            <br />
        </div>
    </div>





<div id="footer-wrap" class="clearfix">
	<div class="footer">
	<div class="clearfix" id="footer-top-wrap">

		<div class="column" id="footer-left">
			<ul><li><a href="http://www.colgate.edu/">Colgate.edu</a></li>
			<li><a href="https://moodle.colgate.edu/login/index.php">Moodle</a></li>
			<li><a href="http://mail.google.com">Webmail</a></li>
			<li><a href="https://portal.colgate.edu/uPortal/f/welcome/normal/render.uP">Portal</a></li>
			<li><a href="https://library.colgate.edu/patroninfo"</a>My Library Account</a></li>
			</ul>
		</div> <!-- footer-middle  -->

		<div class="column" id="footer-middle">
			
			<!--<p><a href="http://exlibris.onapache.edu/forms/report-problem" title="Report a problem">Report a problem</a></p>
			<p><a href="https://exlibris.onapache.edu/project-manager/user?destination=node/add/ticket" title="Submit a help ticket">Submit a help ticket</a></p>-->
		</div><!-- footer-middle  -->

		<div class="column" id="footer-right">
			
		<ul><li><a href="[email protected]">Feedback</a></li></ul>
		</div><!-- footer-right  -->

	</div><!-- footer-top-wrap  -->

	<div id="site-footer-note">
		&copy;2016  Colgate University Libraries | Powered by Sierra

  </div><!-- site-footer-note  -->

</div><!-- footer  -->

</div><!-- foot-wrap  -->
</div>



<!-- end botlogo.html file -->

<!--this is customized <screens/botlogo.html>-->

<!--this is customized <screens/mainmenu.html>-->


Latest requests

# Url Url Source Date
1 https://library.colgate.edu/ 2024-05-20 11:07:20
2 https://thebolditalic.com/?gi=afdb… 2024-05-20 11:07:20
3 https://thebolditalic.com/?gi=30e4… 2024-05-20 11:07:19
4 https://thebolditalic.com/?gi=b9cc… 2024-05-20 11:07:19
5 https://thebolditalic.com/?gi=fce1… 2024-05-20 11:07:19
6 https://thebolditalic.com/?gi=cc11… 2024-05-20 11:07:18
7 https://thebolditalic.com/?gi=623d… 2024-05-20 11:07:17
8 https://thebolditalic.com/?gi=fdfb… 2024-05-20 11:07:17
9 https://thebolditalic.com/?gi=bc65… 2024-05-20 11:07:16
10 https://thebolditalic.com/?gi=084b… 2024-05-20 11:07:16
11 https://mmsi-pkc.auth0.com/login?s… 2024-05-20 11:07:16
12 https://thebolditalic.com/?gi=b731… 2024-05-20 11:07:15
13 https://thebolditalic.com/?gi=687e… 2024-05-20 11:07:14
14 https://thebolditalic.com/?gi=3042… 2024-05-20 11:07:13
15 https://thebolditalic.com/?gi=608b… 2024-05-20 11:07:13
16 https://thebolditalic.com/?gi=1dcb… 2024-05-20 11:07:12
17 https://thebolditalic.com/?gi=bb7e… 2024-05-20 11:07:11
18 https://thebolditalic.com/?gi=a924… 2024-05-20 11:07:10
19 https://thebolditalic.com/?gi=0a43… 2024-05-20 11:07:09
20 https://thebolditalic.com/?gi=fd5c… 2024-05-20 11:07:09