function zaehlen() {
 max = 25;
 anz = document.form1.nachricht.value.length+1;
 document.form1.anzeige.value = max - anz;
 if(anz >= max){
  alert("Maximum erreicht !");
  }
 }

var max = 500;
function zaehlen() {
	anz = document.form1.nachricht.value.length+1;
 document.form1.anzeige.value = max - anz;
  if(anz >= max){
  // alert("Maximum erreicht !");
   document.getElementById("nachricht").style.color="#ff0000";
  } else if(anz < max) {
   document.getElementById("nachricht").style.color="#000000";
 }
}

function post(Smilie) {
document.form1.nachricht.value =
document.form1.nachricht.value + Smilie;
}
