function count() {
  var l=document.postform.text.value.length;
  if (l>1024) document.postform.text.value=document.postform.text.value.substring(0,1024);
  document.postform.charleft.value=l;
  document.postform.charright.value=l*3+7;
}

function checkinput(action) {  
  if (document.getElementById) {
    var p=document.getElementById("checkmsg");
  } else {
    var p=document.all["checkmsg"];
  }
  
  if (document.postform.name.value.length<=0) {
    p.textContent="Name muss eingegeben werden";
    p.innerText="Name muss eingegeben werden";
    document.postform.name.focus();
    return false;
  }

  if (document.postform.text.value.length<=0) {
    p.textContent="Text muss eingegeben werden";
    p.innerText="Text muss eingegeben werden";
    document.postform.text.focus();
    return false;
  }
  
  p.textContent="";
  p.innerText="";
  
  document.postform.action=action;
  return true;
}
