<!--
var message="På grund af Copyrighted materiale kan vi ikke tillade at du tager billeder fra vores side - desværre - kontakt webmasteren hvis du er i tvivl om det du ville have er Copyrighted - We cannot allow you to take any pictures from this website because of Coprighted Material - Contact the webmaster if in doubt"; // Message for the alert box
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;
// -->