// JavaScript Document

function Validator1(theForm)
{ if (theForm.name.value == "")
  { alert("Nicht aufgefüllen \"Name\".");
    theForm.name.focus();
    return (false);
  }
  if (theForm.textin.value == "")
  { alert("Nicht aufgefüllen \"Beschreibung\".");
    theForm.textin.focus();
    return (false);
  }
  if (theForm.kodAS.value == "")
  { alert("Nicht aufgefüllen \"Kód\".");
    theForm.kodAS.focus();
    return (false);
  }
return (true);
}

function NoDouble(){
alert('Nur einmal!!')
}

