Javascript String contains(substr)
String.prototype.contains = function(substr) { return this.indexOf(substr) > -1; }