// Block IP address script- By JavaScriptKit.com (http://www.javascriptkit.com) // For this and over 400+ free scripts, visit JavaScript Kit- http://www.javascriptkit.com/ // This notice must stay intact for use. //Enter list of banned ips, each separated with a comma: var bannedips=["24-40-186-59, 97-74-135-35, 076-067-190-155, 070-031-218-011, 024-151-133-145, 68.180.198.214; "] var ip = '' var handleips=bannedips.join("|") handleips=new RegExp(handleips, "i") if (ip.search(handleips)!=-1){ alert("Your IP has been banned from this site. Redirecting...") window.location.replace("http://www.google.com") }

