  function startList() {
    if (document.all&&document.getElementById) {
      navRoot = document.getElementById("nav");
      for (i=0; i<navRoot.childNodes.length; i++) {
        node = navRoot.childNodes[i];
        if (node.nodeName=="DIV") {
          node.onmouseover=function() {
            this.className+=" over";
            this.style.backgroundColor = "#fce6c1";
          }
          node.onmouseout=function() {
            this.className=this.className.replace(" over", "");
            this.style.backgroundColor = "#fce6c1";
          }
          for (j=0; j<node.childNodes[1].childNodes.length; j++) {
            node2 = node.childNodes[1].childNodes[j];
            if (node2.nodeName=="A") {
              node2.onmouseover=function() {
                this.style.backgroundColor = "#ef9b11";
              }
              node2.onmouseout=function() {
                this.style.backgroundColor = "#fce6c1";
              }
            }
          }
        }
      }
    }
  }


function rep(name) {
	var domain = "inmediasp.de";
	document.write('<a href="mailto:' + name + '@' + domain + '">' + name + '@' + domain + '</a></span><span style="display:none;">');
}




function checkFields(formular){
  var check = true;

  if(formular.Feld_Name.value == '') check = false;
  if(formular.Feld_Vorname.value == '') check = false;
  if(formular.Feld_Firma.value == '') check = false;
  if(formular.Feld_Strasse_Postfach.value == '') check = false;
  if(formular.Feld_PLZ.value == '') check = false;
  if(formular.Feld_Ort.value == '') check = false;
  if(formular.Feld_Telefon.value == '') check = false;
  if(!formular.Angemeldet.checked) check = false;
  if(!check){
   	alert('Es sind nicht alle Felder ausgefüllt. Bitte tragen Sie die fehlenden Informationen nach.');
  } else {
    if (!isFinite(formular.Feld_PLZ.value)) alert("Sie haben keine gültige Postleitzahl angegeben!");
    else formular.submit();
  }
}

