var nav=navigator.appName;
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='Carp-World Onlineshop';");
if(window.self.location.href.indexOf("http://")==-1) window.location="";
if(top.location!=self.location) top.location=self.location;
