// +++ to protect from selection
function disabletext(e){
return false
}
function reEnable(){
return true
}

//if the browser is IE4+
document.onselectstart=new Function ("return false")
//if the browser is NS6
if (window.sidebar){
document.onmousedown=disabletext
document.onclick=reEnable
}
// --- to protect from selection

// +++ to protect from rightclick
function right(evnt) {
if (navigator.appName.toUpperCase().match(/NETSCAPE/) != null) {
if (evnt.which >= 2){
alert("  © 2007 Venture Valuation AG");
return false;
}
}
else
if (event.button >=2)
alert("  © 2007 Venture Valuation AG");
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
// --- to protect from rightclick