// Diese Funktion soll noch kurz vor dem Submit die Lade-Animation starten (einfacher Bildtausch)
    function startDomainRequestImageFlip(){    
    //document.getElementById('bild1').src = '../../pics/loading.gif'; 
    //document.write("<div id='domainRequestProgress' class='domainRequestNotInProgress'>&nbsp;</div>");
    document.getElementById('domainRequestProgress').className = 'domainRequestInProgress';          
    document.getElementById('hidn1').value = '1';  
    // alert(document.getElementById('hidn1').value); 
    document.getElementById("domainRequestNotice").firstChild.nodeValue = "Domain-Verfügbarkeit wird überprüft...";
    document.forms['domainRequestForm'].submit();
    }
    
// Hier werden eigentlich nur JS-Fehler abgefangen...
    function checkDomainRequestForm(){
      if(document.getElementById('hidn1') != null){
        if(document.getElementById('hidn1').value == '0'){
          document.write("<div id='domainRequestProgress' class='domainRequestNotInProgress'>&nbsp;</div>");
          //document.write("<img id='bild1' name='bild1' src='http://www.hosteurope.de/pics/not-loading.gif' width='20' height='20' border='0' style='margin:2px; float:left;'>");
          document.write("<input type='hidden' id='hidn1' name='hidn1' value='0'>");
          // alert('0');
        }
        else{
          document.write("<div id='domainRequestProgress' class='domainRequestInProgress'>&nbsp;</div>");
          //document.write("<img id='bild1' name='bild1' src='http://www.hosteurope.de/pics/loading.gif' width='20' height='20' border='0' style='margin:2px; float:left;'>");
          document.write("<input type='hidden' id='hidn1' name='hidn1' value='1'>");
          // alert('1');
        }
      }
      else {
        // alert('3');
      }
    }
