Here's some javascript that's equivalent to the Find command that searches the current page.
<script language="JavaScript">
var NS4 = (document.layers);
var IE4 = (document.all);
var win = window;
var n = 0;
function findInPage(str) {
var txt, i, found;
if (str == ""

return false;
if (NS4) {
if (!win.find(str))
while(win.find(str, false, true))
n++;
else
n++;
if (n == 0)
alert("Not found."

;
}
if (IE4) {
txt = win.document.body.createTextRange();
// Find the nth match from the top of the page.
for (i = 0; i <= n && (found = txt.findText(str)) != false; i++) {
txt.moveStart("character", 1);
txt.moveEnd("textedit"

;
}
if (found) {
txt.moveStart("character", -1);
txt.findText(str);
txt.select();
txt.scrollIntoView();
n++;
}
else {
if (n > 0) {
n = 0;
findInPage(str);
}
else
alert("Not found."

;
}
}
return false;
}
</script>
</head>
<body>
<p>Search on just this page.</p>
<form name="search" onSubmit="return findInPage(this.string.value);">
<font size=3><input name="string" type="text" size=15 onChange="n = 0;"></font><input type="submit" value="Find"></form>
</body>
</html>
Is that what you wanted, or did you want to do a search on just one page, but not the page you are on?
If so, Front Page lets you search by directory. Put your special page in its own directory. Right click on your search.htm page and choose "Search Form Properties" and "Search results". In the directory text box, type in the folder that you want to limit your search to.
Paul