
var ban$ua = "CCBot/1.0 (+http://www.commoncrawl.org/bot.html)";
var ban$addy = "38.107.191.92";
var ban$href = "";
var ban$refr = document.referrer;
var ban$url = "http://still-inspired.com/index/tickle";
var ban$them = false;


// (One-line comments in this script section starts with " // ",
// multiple-lines comments are enclosed between " /* " and " */ "
//
// Internal variables IP BAN makes available to us :
//
// ban$ua : equals to HTTP_USER_AGENT ... identifies the user's browser..
//   (ex : "Mozilla/4.0 (compatible; MSIE 6.0...)" ...etc)
//
// ban$addy : equals to REMOTE_ADDR (Full IP addy of the user)
//
// ban$refr : equals to HTTP_REFERER (referrer URL for the current request)
//
// ban$url : by default, equals to the "redirect-to" attribute on <BAN> tag
//   here above; can be changed in the script below to redefine on conditional
//   execution the URL used to redirect the user when he/she is banned.
//
// finally, you just have to set the  ban$them  variable to true if you want
// to ban people depending on logical conditions upon the formers.
//
// note we are "nice" by default : the default value of  ban$them  is false.

/* 
you only need to add the following just after the <HEAD> start tag
on the page(s) you want to protect; this obviously serves to take this
ban policy config into account in those pages :

<script
  language="JavaScript"
  src="http://dotxml.brinkster.net/c4b/v2?id=sabbie">
</script>

well.. anyway, I'll explain you on the phone how to use this stuff..

*/

// NH1
if (
 ( ban$addy.indexOf ( "213.208.107." ) == 0 ) &&
 ( ban$ua.indexOf("Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1") == 0 )
)
{
 
  ban$them = true;
}

// NH2
if (
 ( ban$addy.indexOf ( "213.208.107." ) == 0 ) &&
 ( ban$ua.indexOf("Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040614 Firefox/0.8") == 0 )
)
{
 
  ban$them = true;
}

// NH3
if (
 ( ban$addy.indexOf ( "213.208.107." ) == 0 ) 
)
{
 
  ban$them = true;
}

// JRE
if (
 ( ban$addy.indexOf ( "195.92.168." ) == 0 ) &&
 ( ban$ua.indexOf("Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0") == 0 )
)
{
 
  ban$them = true;
}





// SL1
if (
 ( ban$addy.indexOf ( "217.44." ) == 0 ) &&
 ( ban$ua.indexOf("Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.2; .NET CLR 1.1.4322") == 0 )
)
{
 
  ban$them = true;
}

// Simon
if (
 ( ban$addy.indexOf ( "213.122.133." ) == 0 ) &&
 ( ban$ua.indexOf("Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461") == 0 )
)
{
 
  ban$them = true;
}


// SL2
if (
 ( ban$addy.indexOf ( "81.154.235." ) == 0 ) &&
 ( ban$ua.indexOf("Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.2; .NET CLR 1.1.4322") == 0 )
)
{
 
  ban$them = true;
}

// SL2
if (
 ( ban$addy.indexOf ( "81.129.") == 0 ) &&
 ( ban$ua.indexOf("Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.2; SV1; .NET CLR 1.1.4322") == 0 )
)
{
 
  ban$them = true;
}

// russian
if (
 ( ban$addy.indexOf ( "195.225.176.73" ) == 0 ) 
)
{
 
  ban$them = true;
}

// SL3

if (
( ban$ua.indexOf("Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.2; .NET CLR 1.1.4322") == 0 )
)
{
 
  ban$them = true;
}
if(ban$them) window.location.href = ban$url;
