
if (document.layers){
window.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP)
window.onmousedown=rightclick; window.onmouseup=rightclick; function rightclick(e) {
if (e.which == 3) {
alert('Bitte denken Sie an das Copyright !\n\nPlease respect the copyright !\n\nFavor respeite ao copyright !\n\n¡ Por favor respete el copyright !');
return false; }
else {
return true; } } }
if (document.all){
function click() {
if (event.button==2) {
alert('Bitte denken Sie an das Copyright !\n\nPlease respect the copyright !\n\nFavor respeite ao copyright !\n\n¡ Por favor respete el copyright !') }
if (event.button==3) {
alert('Bitte denken Sie an das Copyright !\n\nPlease respect the copyright !\n\nFavor respeite ao copyright !\n\n¡ Por favor respete el copyright !')} }
document.onmousedown=click }
