	//
	// Følgende script disabler højreklik, samt masker url'en ud i statuslinjen i bunden af vinduet. Testet af i I.E. 5, I.E. 5.5, I.E. 6, NS 4.06, NS 6.0,
	// NS 7.0 samt Opera.
	//

function dm() {
	return false;
}
function dp(e) {
	if(e.which==1) {
		w=window;
		w.releaseEvents(Event.MOUSEMOVE);
		w.onmousemove=null;
	}
}
function da() {
	{
		alert("(C) Copyright  - interice.dk - please read >Interice Legal Notice<");
		return false;
	}
}

function dd(e) {
	if(e.which==3) {
		return da();
	}
}

function cm(){
	hg=event.button;
	if(hg==2||hg==3) da();
}

d=document;
w=window;
vc=d.all;
qb=d.getElementById;

if(vc){
	if(qb){
		d.oncontextmenu=da;
		d.onselectstart=dm
	} else {
		d.onmousedown=cm;
	}
}

if(qb&&!vc){
	d.onmousedown=dm;
	d.onmouseup=dd;
	d.oncontextmenu=dm;
}
if(d.layers){
	w=window;
	w.captureEvents(event.MOUSEUP|event.MOUSEDOWN);
	w.onmousedown=dd;
	w.onmouseup=dp;
}

function muteurl(){
	if(window.event.srcElement.tagName=="A") {
		window.status="(C) Copyright - interice.dk";
		return false;
	}
}

document.onmousemove=muteurl;
