function thirdFrames(F1,URL1,F2,URL2,F3,URL3)
     {
      parent.frames[F1].location.href=URL1;
      parent.frames[F2].location.href=URL2;
	  parent.frames[F3].location.href=URL3;
     }

function twoFrames(F1,URL1,F2,URL2)
     {
      parent.frames[F1].location.href=URL1;
      parent.frames[F2].location.href=URL2;
     }
function openWindow(theURL,winName,features)
{ //v2.0
 newwindow = window.open(theURL,winName,features);
}
function callJS(jsStr)
{ //v2.0
  return eval(jsStr)
}
function chkFormular()
    {
     if(document.Formular.Name.value == "")
      {
       alert("Bitte Ihren Namen angeben!");
       document.Formular.Name.focus();
       return false;
      }
     if(document.Formular.Firma.value == "")
      {
       alert("Bitte Ihre Firma angeben!");
       document.Formular.Firma.focus();
       return false;
      }
     if(document.Formular.Strasse.value == "")
      {
       alert("Bitte die Strasse angeben!");
       document.Formular.Strasse.focus();
       return false;
      }
     if(document.Formular.PLZOrt.value == "")
      {
       alert("Bitte die PLZ und den Ort angeben!");
       document.Formular.PLZOrt.focus();
       return false;
      }
     if(document.Formular.Telefon.value == "")
      {
       alert("Bitte die Telefonnummer angeben!");
       document.Formular.Telefon.focus();
       return false;
      }

     if(document.Formular.Mail.value == "")
      {
       alert("Bitte Ihre E-Mail-Adresse eingeben!");
       document.Formular.Mail.focus();
       return false;
      }
     if(document.Formular.Mail.value.indexOf('@') == -1)
      {
       alert("Keine E-Mail-Adresse!");
       document.Formular.Mail.focus();
       return false;
      }
     if(document.Formular.Benutzer.value == "")
      {
       alert("Bitte einen Benutzernamen eingeben!");
       document.Formular.Benutzer.focus();
       return false;
      }
     if(document.Formular.Password.value == "")
      {
       alert("Bitte ein Password eingeben!");
       document.Formular.Password.focus();
       return false;
      }
     if(document.Formular.Password2.value == "")
      {
       alert("Bitte ein Password eingeben!");
       document.Formular.Password2.focus();
       return false;
      }

     if(document.Formular.Password.value == "" || document.Formular.Password.value != document.Formular.Password2.value)
      {
       alert("Password stimmt nicht überein!");
       document.Formular.Password2.focus();
       return false;
       }
}
	 function Go(x)
     {
      if(x == "nothing")
      {
        document.forms[0].reset();
        document.forms[0].elements[0].blur();
        return;
      }
      else if(x == "end") top.location.href = parent.frames[1].location;
      else
      {
        parent.frames[2].location.href = x;
        document.forms[0].reset();
        document.forms[0].elements[0].blur();
      }
    }