
function rechte_maustaste(e)
{ 

    if(window.Event)
    { 
        if(e.which == 3)
        {
            return false
        }
    }

    else
    { 
        if(event.button == 2)
        {    
            alert("keine weiteren Informationen vorhanden")
            return false
        }
    }
    return true
}

// Initialisierung
function init_aus()
{
    if(window.Event)
    {
        document.captureEvents(Event.CLICK | Event.MOUSEDOWN)
    }
    document.onmousedown    = rechte_maustaste
    document.onclick    = rechte_maustaste
}


