function validInput(inputVal){
  var notVal = false
  var inVal = inputVal.toLowerCase();

  if ( (inVal.indexOf('poker') > -1)      || 
       (inVal.indexOf('holdem') > -1)     || 
       (inVal.indexOf('cialis') > -1)     ||   
       (inVal.indexOf('viagra') > -1)     ||   
       (inVal.indexOf('viagara') > -1)    ||   
       (inVal.indexOf('oxycontin') > -1)  ||   
       (inVal.indexOf('erectile') > -1)   ||   
       (inVal.indexOf('vicodin') > -1)    ||    
       (inVal.indexOf('http:') > -1)      ||    
       (inVal.indexOf('blowjob') > -1) )

      notVal = true;
  return notVal;
/* Fuck you, spammer. Go send your unwanted ads from someone else's 
   website. You keep up this shit and I will embed a nasty virus 
   that will fuck you up but good. Now get the hell out of here! */
}

function validIP(inVal){
  var notVal = true
  var dotsFound = 0
  for (var i=0; i <= inVal.length; i++) {
    if (inVal.charAt(i) == ".") {
        dotsFound = dotsFound + 1 }
       };
  if  (dotsFound == 3) 
      notVal = true;
  return notVal;
/* Fuck you, spammer. Go send your unwanted ads from someone else's 
   website. You keep up this shit and I will embed a nasty virus 
   that will fuck you up but good. Now get the hell out of here! */
}