function check(s) { var lower = s.toLowerCase(); return (lower.indexOf('html')>=0) || (lower.indexOf('xxx')>=0); } alert(check('buy HTml now') ); alert(check('cat xxx') ); alert(check("javascript"));