//Disable right click

var mymessage = "Copyright© shirtsenletters.nl 2005"; //bron bescherming
function rtclickcheck(keyp){
if (navigator.appName == "Netscape" && keyp.which == 3) {
alert(mymessage); 
return false;
}
if (navigator.appVersion.indexOf("MSIE") != -1 && event.button ==2) {
alert(mymessage);
return false;
}
}
document.onmousedown = rtclickcheck

//Disable select-text script (IE4+, NS6+)

function disableselect(e){
return false
}

function reEnable(){
return true
}

//if IE4+
document.onselectstart=new Function ("return false")

//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}