var Eingabe="";
var maxlang=900;
 function kommax()
 {
if (window.document.Disp.Kommentar.value.length>900)
{
window.document.Disp.Kommentar.value=Eingabe;
return;
}
else
{
Eingabe=window.document.Disp.Kommentar.value;
window.document.Disp.T2.value=maxlang-window.document.Disp.Kommentar.value.length;
}
}