 function css_description () {
   document.flyer_hochladen.description.style.color = "black";
   document.flyer_hochladen.description.style.fontStyle = "normal";
   document.flyer_hochladen.description.value = ''; }
 function css_tag () {
   document.flyer_hochladen.tag.style.color = "black";
   document.flyer_hochladen.tag.style.fontStyle = "normal";
   document.flyer_hochladen.tag.value = ''; }
 function css_monat () {
   document.flyer_hochladen.monat.style.color = "black";
   document.flyer_hochladen.monat.style.fontStyle = "normal";
   document.flyer_hochladen.monat.value = ''; }
 function css_jahr () {
   document.flyer_hochladen.jahr.style.color = "black";
   document.flyer_hochladen.jahr.style.fontStyle = "normal";
   document.flyer_hochladen.jahr.value = ''; }

 function css_mail () {
   document.flyer_alert.mail.style.color = "black";
   document.flyer_alert.mail.style.fontStyle = "normal";
   document.flyer_alert.mail.value = ''; }
   
 function chkFormular () {
   if (document.flyer_hochladen.userfile.value == "") {
    alert("Bitte einen Flyer als Bild eingeben!");
    document.flyer_hochladen.userfile.focus();
    return false; }
   if (document.flyer_hochladen.ort.value == "") {
    alert("Bitte einen Ort angeben!");
    document.flyer_hochladen.ort.focus();
    return false; }

   if (document.flyer_hochladen.tag.value == "") {
    alert("Bitte den Tag eingeben!");
    document.flyer_hochladen.tag.focus();
    return false; }
   if (isNaN(document.flyer_hochladen.tag.value)) {
    alert("Bitte eine Zahl eingeben!");
    document.flyer_hochladen.tag.focus();
    return false; }

   if (document.flyer_hochladen.monat.value == "") {
    alert("Bitte den Monat eingeben!");
    document.flyer_hochladen.monat.focus();
    return false; }
   if (isNaN(document.flyer_hochladen.monat.value)) {
    alert("Bitte eine Zahl eingeben!");
    document.flyer_hochladen.monat.focus();
    return false; }

   if (document.flyer_hochladen.jahr.value == "") {
    alert("Bitte das Jahr eingeben!");
    document.flyer_hochladen.jahr.focus();
    return false; }
   if (isNaN(document.flyer_hochladen.jahr.value)) {
    alert("Bitte eine Zahl eingeben!");
    document.flyer_hochladen.jahr.focus();
    return false; }

   if (document.flyer_hochladen.code.value == "") {
    alert("Bitte den Sicherheitscode eingeben!");
    document.flyer_hochladen.code.focus();
    return false; }
    }
