<!--
function clickIE() {
    if (document.all) {
        return false;
    }
}
function clickNS(e) {
    if (document.layers||(document.getElementById&&!document.all)) {
        if (e.which==2||e.which==3) {
            return false;
        }
    }
}
if (document.layers) {
    document.captureEvents(Event.MOUSEDOWN);
    document.onmousedown=clickNS;
}
else{
    document.onmouseup=clickNS;
    document.oncontextmenu=clickIE;
}

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
}
 
function keypressed(){
    return false;
    }
document.onkeydown=keypressed;

var clickmessage="© 1998-2007 Tonicity Holding bv. All rights reserved. No content of this website may be used or copied without prior written permission of the rightful owners of the published material. For more information please contact Tonicity Holding (tkroon@tonicity.nl), Moezeldreef 321, 3561 GD Utrecht, The Netherlands. Digimarc and the Digimarc logo are registered trademarks of Digimarc Corporation. The 'Digimarc Digital Watermarking' Web Button is a trademark of Digimarc Corporation, used with permission. For more information on digimarc please visit their site."


function disableclick(e) {
if (document.all) {
if (event.button==2||event.button==3) {
if (event.srcElement.tagName=="IMG"){
alert(clickmessage);
return false;
}
}
}
else if (document.layers) {
if (e.which == 3) {
alert(clickmessage);
return false;
}
}
else if (document.getElementById){
if (e.which==3&&e.target.tagName=="IMG"){
alert(clickmessage)
return false
}
}
}

function associateimages(){
for(i=0;i<document.images.length;i++)
document.images[i].onmousedown=disableclick;
}

if (document.all)
document.onmousedown=disableclick
else if (document.getElementById)
document.onmouseup=disableclick
else if (document.layers)
associateimages()
// --> 

