// JavaScript Document
function zaehle_nachricht()
{
	if (window.document.DAFORM.nachricht.value.length>1000)
	{
		window.document.DAFORM.nachricht.value=formfeld;
 		return;
	}
 	else
	{
		formfeld = window.document.DAFORM.nachricht.value;
 		window.document.DAFORM.anzeige_nachricht.value = 1000-window.document.DAFORM.nachricht.value.length;
	}
}
