<!--
<!-- Copyright (c) 04/2004 - www.bamian.de - A.& M. Basler // -->
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 (c) 2004  - www.bamian.de -  \nA.& M.Basler, Mettmann');
    return false;
    }
    else {
        return true;
        }
    }
}
if (document.all){
    function click() {
    if (event.button==2) {
    alert('copyright (c) 2004  - www.bamian.de -  \nA.& M.Basler, Mettmann')
    }

    if (event.button==3) {
    alert('copyright (c) 2004  - www.bamian.de -  \nA.& M.Basler, Mettmann')}
    }
    document.onmousedown=click
}

function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
<!-- Copyright (c) 04/2004 - www.bamian.de - A.& M. Basler // -->
// -->

