stylesheet = base_dir+"/public/xsl/sr.xsl";
if ( search_text != null ) {
Reader r = new StringReader(search_text);
StreamTokenizer input = new StreamTokenizer(r);
input.resetSyntax();
input.eolIsSignificant(true);
input.wordChars('a', 'z');
input.wordChars('A', 'Z');
input.wordChars('0', '9');
input.wordChars('%', '%');