con la información que has dado, aquí te dejo un código que sirve para buscar palabras en el documento, podrías mejorarlo y personalizarlo a tus necesidades.
<!DOCTYPE html>
<html>
<head>
<title>Buscardor de Palabras</title>
<script language="JavaScript">
var TRange=null
function busca (str) {
if (parseInt(navigator.appVersion)<4) return;
var strFound;
if (window.find) {
strFound=self.find(str);
if (!strFound) {
strFound=self.find(str,0,1)
while (self.find(str,0,1)) continue
}
}
else if (navigator.appName.indexOf("Microsoft")!=-1) {
if (TRange!=null) {
TRange.collapse(false)
strFound=TRange.findText(str)
if (strFound) TRange.select()
}
if (TRange==null || strFound==0) {
TRange=self.document.body.createTextRange()
strFound=TRange.findText(str)
if (strFound) TRange.select()
}
}
else if (navigator.appName=="Opera") {
alert ("Opera no soporta busqueda")
return;
}
if (!strFound) alert ("Cadena '"+str+"' no fue Encontrada")
return;
}
</script>
</head>
<body>
<input name="t1" value="" placeholder="Texto a Buscar" />
<input onclick="busca(document.all.t1.value)" type="button" value="Buscar" />
<p>
Importante: El script y el formulario los puedes poner en cualquier parte de tu web, pero recomendamos que incluyas el script en el <head> </head> de tu página, aunque no es absolutamente necesario, como ves en este blog en el cual no copie el script en el <head> pero si lo puse de primero en la entrada y funciona correctamente.
<br>
Como puedes ver la caja de texto tiene el name="t1", por lo cual el botón tiene en el evento OnClick la función busca en la cual envía el Value del objeto t1.
</p>
</body>
</html>
resultado...
si la palabra se encuentra se selecciona
en caso de que no se encuentre, arroja una alerta...