if (document.layers){
window.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP)
window.onmousedown=rightclick;
window.onmouseup=rightclick;
function rightclick(e) {
if (e.which == 3) {
// Put right mouse code here
alert('Copyright by\n\nMüritz-Online\nWarendorfer Straße 20\n17192 Waren (Müritz)\nTel.:0 39 91  63 46 91 \nFax : 0 39 91 / 63 46 92');
return false;
}
else {
return true;
}
}
}
if (document.all){
function click() {
if (event.button==2) {
alert('Copyright by\n\nMüritz-Online\nWarendorfer Straße 20\n17192 Waren (Müritz)\nTel.:0 39 91 / 63 46 91 \nFax : 0 39 91 / 63 46 92')
}
if (event.button==3) {
alert('Müritz-Online\nWarendorfer Straße 20\n17192 Waren (Müritz)\nTel.:0 39 91  63 46 91 \nFax : 0 39 91 / 63 46 92')}
}
document.onmousedown=click
}
