// Kontextmenü sperren
//function click (e)
//{
//    if (!e)
//    e = window.event;
//    if ((e.type && e.type == "contextmenu") || (e.button && e.button == 2) || (e.which && e.which == 3))
//    {
//        if (window.opera)
//            window.alert("Sorry: Diese Funktion ist deaktiviert.");
//        return false;
//    }
//}

//if (document.layers)
//  document.captureEvents(Event.MOUSEDOWN);
//  
//document.onmousedown = click;
//document.oncontextmenu = click;


// Kondolenzbucheintrag TextBox auf 500 Zeichen begrenzen
function CalcCharKondolenzbuch()
{
    if(document.form1.tbText.value.length > 500)
    {
        document.form1.tbText.value = document.form1.tbText.value.substring(0,500);
    }
}


