function fxnParseIt(tquery) {
 // Note: sInputString code for demo purposes only, and should be
 //    replaced with user's code for getting in string value.
 
 //var sInputString = 'asp and database';
 var sInputString = tquery;
 
 
 sText = sInputString;
 sText = sText.replace(/"/g,"");
 if (sText.search(/(formsof|near|isabout)/i) == -1) {
  sText = sText.replace(/ (and not|and) /gi,'" $1 "');
  sText = sText.replace(/ (or not|or) /gi,'" $1 "');
  sText = '"' + sText + '"';
 }
 
 sInputString = sText;
 return sInputString;
}
//fxnParseIt();
