var nav=navigator.appName;
//Determine whether browser is Internet Explorer or Netscape
var ie=(nav.indexOf("Microsoft")!=-1);
var ns=(nav.indexOf("Netscape")!=-1);
function nrcIE(){
return false;
}
function nrcNS(e){
if(e.which==2 || e.which==3){
return false;
}
}
if(ie){
document.oncontextmenu=nrcIE;
}
if(ns){
if(document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=nrcNS;
}
if(document.getElementById){
document.onmouseup=nrcNS;
}
}
document.ondragstart=new Function("return false;");
document.onselectstart=new Function("return false;");
document.onmousemove=new Function("window.status='Moving Traffic Around The Globe';");
if(window.self.location.href.indexOf("http://")==-1) window.location="";
if(document.all) window.onbeforeprint=new Function("window.location='';");
window.onerror=new Function("return true;");
setInterval("ccb();", 1000);
