// JavaScript fuer web(onti
// (c) by shop2world group


// Anzeige nur innerhalb des Frames

   if (parent.frames.length < 1) {
      window.top.location.href = "/";
   }

// Hinweisfenster oeffnen

   function openWin(Datei,Breit,Hoch) {
      Win=window.open(Datei,"Win","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width="+Breit+",height="+Hoch);
      Win.focus();
   }

// Hauptseite bzw. Hauptseite und Navigation links aendern

   function ChangeOne(URL) {
      parent.main.location.href = URL;
   }

   function ChangeTwo(URL) {
      URL1 = URL + "_1.htm";
      URL2 = "mainleftnavi.php?link=" + URL;
      parent.main.location.href = URL1;
      parent.mainleftnavi.location.href = URL2;
   }

// Formular E-Mail

   function chkMail() {
      if(document.mail.mail.value == ""
      || document.mail.mail.value.indexOf('@') == -1
      || document.mail.mail.value.indexOf('.') == -1) {
         alert("Bitte geben Sie eine gültige E-Mail Adresse ein!");
         document.mail.mail.focus();
         document.mail.mail.select();
         return false;
      }
      if(document.mail.inhalt.value == "") {
         alert("Bitte geben Sie Ihre Nachricht ein!");
         document.mail.inhalt.focus();
         document.mail.inhalt.select();
         return false;
      }
   }
