// JavaScript file to prevent downloading of Nadine's pictures
var message = "if you would like to buy this picture, please contact Nadine";
function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
function kopieren() {
document.write("")
alert ("if you would like to buy this picture, please contact Nadine")
history.back()
}function speichern() {
document.write("")
alert ("if you would like to buy these pictures, please contact Nadine")
history.back()
}
function netscapeKeyPress(e) {
if (e.modifiers == 2) {
if (e.which == 19 )
 document.write("")
 alert ("if you would like to buy this picture, please contact Nadine")
 history.back();
}
else if (e.modifiers == 4) {
if (e.which == 83 )
 document.write("")
 alert ("if you would like to buy this picture, please contact Nadine")
 history.back();
}
}
function microsoftKeyPress () {
if (window.event.ctrlKey) {
if (window.event.keyCode == 19)
 document.write("")
 alert ("if you would like to buy this picture, please contact Nadine")
 history.back();
}
else if (window.event.shiftKey) {
if (window.event.keyCode == 83)
 document.write("")
 alert ("if you would like to buy this picture, please contact Nadine")
 history.back();
}
}
if (navigator.appname == 'Netscape') {
 window.captureEvents(Event.KEYPRESS);
 window.onKeyPress = netscapeKeyPress;
} 