function checkSpam(str) { str = str.toUpperCase(); if((str.indexOf('VIAGRA')) || (str.indexOf('XXX'))) return true; else return false; } document.write(checkSpam('ffg'));