//JS-File für Geschäfts-Bereich

function MM_openBrWindow_hilfe(wert) { //v2.0
  var theURL;

  theURL = '/scripte/submit_help.php#';
  theURL = theURL+wert;

  window.open(theURL,'Hilfe','scrollbars=yes,resizable=yes,width=610,height=300');

 }

function send_submitter_data()
 {
 var Eingabe, a;
 theURL = '/scripte/do_sm_submit.php?';

 for (a=0; a < window.document.forms[0].elements.length; a++)
  {
  Eingabe = window.document.forms[0].elements[a].value;
  if (Eingabe!="")
   {
   theURL = theURL +"&"+ window.document.forms[0].elements[a].name +"="+ Eingabe;
   }
  else {
   break;
       }
  } //for

 //alert(theURL);

 window.open(theURL,'SM_Eintragung','scrollbars=yes,resizable=yes,width=610,height=300');
 } //send_submitter_data

 //Funktion zum Abfragen des Domain-Status..
 function MM_openBrWindow_check(wert,theURL,winName,features) { //v2.0
  var wert1;
  var param;

  wert1 = window.document.buydomain.elements["inp_"+wert].value;

  if (wert1 != "") {
   wert2 = window.document.buydomain.elements["inp_ext_"+wert].options.value;
   param = "?domain="+wert1+"|"+wert2;
   theURL = "http://www.fit-4.net/"+theURL+param;
   window.open(theURL,winName,features);
                    }
}


