oops! the search thing is backwards
code:
var filta0 = new Array("something here", "something there");
function filtaNow(tehmess){
for(x in filta0){
Debug.Trace("Search #" + x + ": " + filta0[x]);
if(filta0[x].search(tehmess) != -1){
Debug.Trace("Found Search #" + x + ": " + filta0[x]);
}
}
}
that should work