<!--

ie4 = (document.all) ? 1:0;

ns4 = (document.layers) ? 1:0;

function mouseDown(e) {

if ((ns4 && e.which==3) || (ie4 && event.button==2)) {

alert(" © digitalsstudio.nl");

return false

}

return true;

}

function init() {

document.onmousedown = mouseDown

if (ns4) document.captureEvents(Event.MOUSEDOWN)

}

//onload = init

init();

// -->
