function kopierschutz(ev) {
    if ((typeof event != 'undefined' && event.button==2) || (ev && ev.button==2)) {
        alert('copyright by highland angels');
    }
}
document.onmousedown=kopierschutz;
