// www.ds_inet.de - rechte Maustaste abfangen mit JavaScript - Version 14.08.2006

// hier die Tase strg+p
function DoFalse(e)
{
 if((document.all && event.ctrlKey == true) || (document.layers && e.modifiers == 2))
 {
  alert('Nicht möglich!'); return false;
 }
}

if(document.layers)
{
 document.captureEvents(Event.KEYPRESS);
 document.onKeyPress = DoFalse;
}

// hier die rechte maustaste ...
function click(evt) {
if (navigator.appName.indexOf("Microsoft") != -1){
if (event.button==2) {
                                alert('Error - Schmuck und Fotos \nunterliegen dem copyright \n\nBei Bedarf bitte per e-mail anfordern.');
return false
};
};
if (navigator.appName.indexOf("Netscape") != -1) {
if ( evt.which == 3 ) {
                                alert('Error - Schmuck und Fotos \nunterliegen dem copyright \n\nBei Bedarf bitte per e-mail anfordern.');
return false
};
};
};
if (navigator.appName.indexOf("Netscape") != -1) {
document.captureEvents( Event.MOUSEDOWN )
};
document.onmousedown = click;
