
function formular_senden()
{

  var fehlertext=" ";
  //fehlertext=formular_pruefung();
  if (fehlertext==" ")
  {
  		document.sendform.encoding = "text/plain";
  		//document.sendform.text.value=encrypt(text_inhalt(0));
  		document.sendform.submit();
  }
  else
  {
     alert(fehlertext);
  }
}

