Search page function

Search page function

Hello.

I manage an intranet site, that contains a very large amount of data (mostly hyperlinks).
I would like to add a search box that indexes all content on one page, and displays the results on a separate page.
It would require the ability to include, for instance, links within a dropdown menu.
I understand this would be easier accomplished if the content was contained on one page (no iframes or ASP includes, etc.). I can manage that.

I have created a Find on Page that works, but highlighting as you type is not the required method in this case.


mainpage.html:
<input type="text" placeholder="Enter search words">
<a href="#">Finance Office</a>
<a href="#">Personnel Office</a>
<a href="#">Management Office</a>
<a href="#">Management Assistant Office</a>

resultspage.html (assuming customer searched for Management):
You searched for "Management"
<a href="#">Management Office</a>
<a href="#">Management Assistant Office</a>