<!-- POPUP -->
 
  <!--
   function popup(breite, hoehe, ziel){
    var _popwidth = breite;
    var _popheight = hoehe;
    _xpos = (screen.width - _popwidth) / 2;
    _ypos = (screen.height - _popheight) / 2;
    var _eigenschaften = "width=" + _popwidth + ",height=" + _popheight + ", menubar=no, left=" + _xpos  + ",top=" + _ypos + ", resizable=yes, scrollbars=yes";
    _popup = window.open(ziel,"popup",_eigenschaften);
    _popup.focus();
   }
   
   function popupwithout(breite, hoehe, ziel){
    var _popwidth = breite;
    var _popheight = hoehe;
    _xpos = (screen.width - _popwidth) / 2;
    _ypos = (screen.height - _popheight) / 2;
    var _eigenschaften = "width=" + _popwidth + ",height=" + _popheight + ", menubar=no, left=" + _xpos  + ",top=" + _ypos + ", resizable=no, scrollbars=no";
    _popup = window.open(ziel,"popup",_eigenschaften);
   }
   
   function orderpopup(breite, hoehe, ziel){
    var _popwidth = breite;
    var _popheight = hoehe;
    _xpos = (screen.width - _popwidth) / 2;
    _ypos = (screen.height - _popheight) / 2;
    var _eigenschaften = "width=" + _popwidth + ",height=" + _popheight + ", menubar=no, left=" + _xpos  + ",top=" + _ypos + ", resizable=no, scrollbars=no";
    _popup = window.open("orderpopup.html","orderpopup",_eigenschaften);
    self.location.href = ziel;
   }

<!-- ENDE POPUP -->

<!-- ABFRAGE, OB DOMAIN LEERSTELLEN BESITZT -->

 function chk(){
 	if (document.forms[0].domain.value == ""){
 		alert("Please enter a domainname.");
 		return false;
 	}else{
 		document.forms[0].submit(); 
 	}
 }

<!-- ENDER DER ABFRAGE, OB DOMAIN LEERSTELLEN BESITZT -->

  //-->