
<!-- spotlight random image selection script -->
function image() { };  
image = new image(); 
number = 0;

      // imageArray 

<!--      image[number++] = "<a title='Library's Wish List' href='http://library.kcc.hawaii.edu/main/about_info/wishlist.html'><img src='../images/spotlight/spotlight_wishlist.gif'></a>"

<!-- yes, this works to make it come up more often, but I'm sure there's a more elegant method...
      image[number++] = "<a title='Safari Tech Books Online' href='http://library.kcc.hawaii.edu/main/books_info/safari_info.html'><img src='images/spotlight/spotlight_safari.gif'></a>"
      image[number++] = "<a title='Safari Tech Books Online' href='http://library.kcc.hawaii.edu/main/books_info/safari_info.html'><img src='images/spotlight/spotlight_safari.gif'></a>"
      image[number++] = "<a title='Safari Tech Books Online' href='http://library.kcc.hawaii.edu/main/books_info/safari_info.html'><img src='images/spotlight/spotlight_safari.gif'></a>"

<!--      image[number++] = "<a title='Get your KCC ID Card at the Circulation Desk' href='http://library.kcc.hawaii.edu/main/services_info/kccidcard.html'><img src='images/spotlight/spotlight_kccid.jpg'></a>"
<!--      image[number++] = "<a title='Get your KCC ID Card at the Circulation Desk' href='http://library.kcc.hawaii.edu/main/services_info/kccidcard.html'><img src='images/spotlight/spotlight_kccid.jpg'></a>"
<!--      image[number++] = "<a title='Get your KCC ID Card at the Circulation Desk' href='http://library.kcc.hawaii.edu/main/services_info/kccidcard.html'><img src='images/spotlight/spotlight_kccid.jpg'></a>"
 
      image[number++] = "<a title='Issues & Controversies @ FACTS.com' href='http://library.kcc.hawaii.edu/main/find_articles_info/factsfile_info.html'><img src='images/spotlight/spotlight_factsfile.gif'></a>"
      image[number++] = "<a title='Issues & Controversies @ FACTS.com' href='http://library.kcc.hawaii.edu/main/find_articles_info/factsfile_info.html'><img src='images/spotlight/spotlight_factsfile.gif'></a>"
      image[number++] = "<a title='Issues & Controversies @ FACTS.com' href='http://library.kcc.hawaii.edu/main/find_articles_info/factsfile_info.html'><img src='images/spotlight/spotlight_factsfile.gif'></a>"

<!--      image[number++] = "<a title='View a list of new books received at KCC Library' href='http://library.kcc.hawaii.edu/main/books_info/newbooks.php'><img src='images/spotlight/spotlight_newbooks.jpg'></a>"

<!--      image[number++] = "<a title='Libraries matter bracelets available at Business Desk, $3' href='http://library.kcc.hawaii.edu/'><img src='images/spotlight/spotlight_bracelet.jpg'></a>"

<!--      image[number++] = "<a title='Follow this link to our Suggestion Box' href='http://library.kcc.hawaii.edu/main/about_info/suggestion_box.html'><img src='images/spotlight/spotlight_suggestionbox.jpg'></a>"

<!--      image[number++] = "<a title='Click here to find out more about plagiarism' href='http://library.kcc.hawaii.edu/main/instruction_info/plagiarism1.html'><img src='images/spotlight/spotlight_plagiarism.jpg'></a>"

<!--      image[number++] = "<a title='Click here to find out more about library wireless access' href='http://library.kcc.hawaii.edu/main/services_info/wireless.html'><img src='images/spotlight/spotlight_wifi_captioned.jpg'></a>"

<!--      image[number++] = "<a title='Click here to search our site using Google' href='http://library.kcc.hawaii.edu/main/about_info/site_search.html'><img src='images/spotlight/spotlight_library_googlesearch.jpg'></a>"

      <!-- temporarily removed
      <!-- added 12/2/05; removed 12/15/05 image[number++] = "<a title='Important Student Survey' href='http://makahiki.kcc.hawaii.edu:8080/opinio/s?s=59'><img src='images/index_survey.gif'></a>"
      <!-- image[number++] = "<a title='Tax Resources' href='http://library.kcc.hawaii.edu/main/internet_info/tax_info.html'><img src='images/tax_info.jpg'></a>"
      <!-- image[number++] = "<a title='Make citations the easy way with the Citation Builder!' href='http://www.lib.ncsu.edu/lobo2/using/citebuilder/'><img src='images/citation_builder.jpg'></a>"
      <!-- image[number++] = "<a title='Click here to access full-text newspapers, business, legal, and statistical information' href='http://library.kcc.hawaii.edu/main/find_articles.html#lexis'><img src='images/lexis_nexis.jpg'></a>"
      <!-- image[number++] = "<a title='Check out the library's email Reference Service!' href='http://library.kcc.hawaii.edu/main/eref.html'><img src='images/question.jpg'></a>"
      <!-- image[number++] = "<a title='Click here to find out about the library's group study rooms' href='http://library.kcc.hawaii.edu/main/group_study.html'><img src='images/group_study.jpg'></a>" 
      <!-- image[number++] = "<a title='Click here to find out how to cite books, journal articles, Web sites, and more' href='http://library.kcc.hawaii.edu/main/start_research.html#CitingSources'><img src='images/citing_sources.jpg'></a>" 
      <!-- image[number++] = "<a title='Click here to view Flash videos on using Hawai'i Voyager and the Full-Text Periodical Finder' href='http://library.kcc.hawaii.edu/main/library_videos.html'><img src='images/video_tutorials.jpg'></a>" 
      <!-- image[number++] = "<a title='Click here to check out the Full-Text Periodical Finder' href='http://library.kcc.hawaii.edu/main/e_journals_index.html'><img src='images/full_text_per_finder.jpg'></a>" 
      <!-- image[number++] = "<a title='Click here to beat the cost of high textbook prices' href='http://library.kcc.hawaii.edu/main/textbook_prices.html'><img src='images/textbook_prices.jpg'></a>"

increment = Math.floor(Math.random() * number);
function spotlight() { document.write(image[increment]);  }

<!-- clear text from search box when selected by user script-->

function clearfield( fieldname ){
  if (fieldname.defaultValue==fieldname.value)
  fieldname.value = ""
}

<!-- Automatic linking pulldown menu -->
<!-- Original: Alex Tu <boudha1@hotmail.com> -->
<!-- Web Site:  http://www.geocities.com/MadisonAvenue/4368 -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

function formHandler(form){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}