// JavaScript Document
function ChkFrm(oForm)
{
sAlert1 = "Folgendes Feld wurde nicht ausgefüllt ";
if (oForm.anfrage.value == "")
{
  oForm.anfrage.focus();
  alert(sAlert1 + "'Anfrage'");
  return (false);
}
if (oForm.name.value == "")
{
  oForm.name.focus();
  alert(sAlert1 + "'Name'");
  return (false);
}
if (oForm.vorname.value == "")
{
  oForm.vorname.focus();
  alert(sAlert1 + "'Vorname'");
  return (false);
}
if (oForm.email.value == "")
{
  oForm.email.focus();
  alert(sAlert1 + "'E-Mail'");
  return (false);
}

return (true);
}