Hi,
cursor moved before first word "hotel" found in myDoc:
myDoc = app.activeDocument;
app.findTextPreferences = null;
app.findTextPreferences.findWhat = "hotel";
mWord = myDoc.findText()[0];if (mWord) mWord.insertionPoints[0].select();else (alert ("not found") );
Jarek