if(top.frames.length > 0)
 top.location.href=self.location;
 
function openwindow(wpath, wwidth, wheight) {
 newwindow = window.open(wpath, "NAME", "width="+wwidth+",height="+wheight);
// newwindow.focus();
}

function chkFormular () {
  if (document.Formular.tag.value == "") {
    alert("Keinen Tag eingegeben!");
    document.Formular.tag.focus();
    return false;
  }
  if (eval(document.Formular.tag.value)>31){
    alert("Tag!");
    document.Formular.tag.focus();
    return false;
   }
  if (document.Formular.monat.value == "") {
    alert("Keinen Monat eingegeben!");
    document.Formular.monat.focus();
    return false;
  }
  if (eval(document.Formular.monat.value)>12){
    alert("Monat ungültig!");
    document.Formular.monat.focus();
    return false;
  }
  if (document.Formular.jahr.value == "") {
    alert("Kein Jahr eingegeben!");
    document.Formular.jahr.focus();
    return false;
  }
    if (eval(document.Formular.jahr.value)<2007){
    alert("Jahr ungültig!");
    document.Formular.jahr.focus();
    return false;
   }
   if (document.Formular.titel.value == "") {
    alert("Keinen Titel eingegeben!");
    document.Formular.titel.focus();
    return false;
  }
    if (document.Formular.beschrieb.value == "") {
    alert("Kein Beschrieb eingegeben!");
    document.Formular.beschrieb.focus();
    return false;
  }
}
