
// no right click

var message="Vielen Dank für den Besuch auf unserer Homepage!\n\nIhr ALESA-Team."; 

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;


// unsere seite kann nicht in ein frame gelinkt werden

if (top.location != self.location) {
top.location = self.location.href
}


// keine .js-Fehlermeldungen

function stopError() {
return true;
}

window.onerror = stopError;
 
