function Titeltext (MonatNr) {
var Monat=new Array();
Monat[1]="01.01.";
Monat[2]="01.02.";
Monat[3]="01.03.";
Monat[4]="01.04.";
Monat[5]="01.05.";
Monat[6]="01.06.";
Monat[7]="01.07.";
Monat[8]="01.08.";
Monat[9]="01.09.";
Monat[10]="01.10.";
Monat[11]="01.11.";
Monat[12]="01.12.";
return Monat[MonatNr];
}

function checkdate(Eingabe) {
var jetzt = new Date();
Tagvon = Eingabe.substr(0,2);
Monatvon = Eingabe.substr(3,2);
Jahrvon = Eingabe.substr(6,4);
USDatumvon = Monatvon + "/" + Tagvon + "/" + Jahrvon
if (Date.parse(USDatumvon) <= jetzt.getTime()) {
    
    document.getElementById('start').style.border = "solid red 1px";
    alert("Ihr Gewünschter Beginn darf nicht in der Vergangenheit liegen!");
} else {
    document.getElementById('start').style.border = "solid #8E8E8E 1px";
}
}

function setCheckDateFunction(){
   document.getElementById('start').onchange = function() { checkdate(this.value); }
   
   var AktuellesDatum = new Date();
   var AktuellerMonat = (AktuellesDatum.getMonth()+2);
   var AktuellesJahr = (AktuellesDatum.getFullYear());
   var Text=Titeltext(AktuellerMonat)+AktuellesJahr;
   

   if(AktuellerMonat < 10) {
   AktuellerMonat = "0" + AktuellerMonat;
   }

   if(document.getElementById('start').value=="") document.getElementById('start').value = Text;
   //alert(Text);
}
