

<!--
function clickIE()
{
   if (document.all) {return false}
}
function clickNS(n)
{
   if (document.layers||
   (document.getElementById&&!document.all))
   {if (n.which==2||n.which==3) {return false}}
}
if (document.layers)
{
   document.captureEvents(Event.MOUSEDOWN);
   document.onmousedown = clickNS
}
else
{
   document.onmouseup = clickNS;
   document.oncontextmenu = clickIE
}
document.oncontextmenu = new Function("return false")
// -->


<!--
function disableselect()
{return false}
if (window.sidebar)
// Works in NS6
document.onmousedown = disableselect
else
// Works in IE4+
document.onselectstart = new Function("return false")
// -->

var bannedips=[" 24.145.5" , "207.255.14.087", "72.79.118.78"]
var ip = '<!--#echo var="REMOTE_ADDR"-->'
var handleips=bannedips.join("|")
handleips=new RegExp(handleips, "i")
if (ip.search(handleips)!=-1){ 
alert("Sorry, Server Error Redirecting...")
window.location.replace("http://www.google.com")
}