
/*
wondering what this file is for?
it has to do with my hosts file, blocking web sites.
*/


// results
function shk(){
alert("Site blocked..");
document.location="http://www.google.ca";
}
//end results

// sites
// blocked (bad hosts)
var bl1 = "cisindia.";
var bl7 = "helloindia.";
var bl8 = "tutorials.";
var bl9 = "shouvik.";
// endblocked
// end sites

// detector
if(location.href.indexOf(bl1) != -1 || location.href.indexOf(bl7) != -1 || location.href.indexOf(bl8) != -1 || location.href.indexOf(bl9) != -1){
shk();
}
//end detector

// THIS IS THE END, IN CASE YOU CAN'T TELL!
