<!--
    /* alert("in redir.js"); */
    /* alert(window.location.search); */
    if (window.location.search != ""){
       var strSearch=window.location.search;

       strFound=strSearch.search(/cschneider/);

       if (strFound != -1){

          var jetzt = new Date();

          var cookiename="cookiebom";

          var strPos=strSearch.indexOf("/");

          if (strPos != -1){


              if (strSearch.substr(0,5)=="?hop="){
                  var cookiewert=strSearch;



                  var cookieexp=jetzt;
                  var Verfallzeit = 1000*60*60*24*365;
                  var Auszeit = new Date(jetzt.getTime() + Verfallzeit);
                  document.cookie = cookiename+"="+cookiewert+"; expires="+Auszeit.toGMTString()+";";

                  var strlocation=new String (window.location);


                  var Ergebnis = strlocation.search(/localhost/);

                  if (Ergebnis != -1){
                      var redir="http://hop.clickbank.net/";
                  }
                  else
                  {

                      var redir=new String("http://hop.clickbank.net/?");

                      var redir2=strSearch.substr(5);
                      var redir3=new String(redir + redir2);


                      window.location.replace(redir3);
                  }
              }
          }
       }
   }
   else {

       if (document.cookie){
          var Wert1="";
          var Wertstart = document.cookie.indexOf("?");
          var Wertende = document.cookie.indexOf("/");

          if (Wertende == -1){
             Wertende = document.cookie.length;
          }
          Wert = document.cookie.substring(Wertstart,Wertende);

          if (Wert.substr(1,4)=="hop="){
             Wert=Wert.substr(5);



             strFound=Wert.search(/cschneider/);
             if (strFound == -1){
                 Wert1 = "?" + Wert + "/cschneider";
                 var Wert2
                 Wert2 = "?" + Wert + ".cschneider";
             }

             var strlocation=new String (window.location);
             var Ergebnis = strlocation.search(/localhost/);

             if (Ergebnis != -1){

                var redir="http://hop.clickbank.net/";
                window.location=window.location + Wert1;
             }
             else
             {

                   var redir="http://hop.clickbank.net/";
                  window.location.replace(redir + Wert1);
             }
          }
       }
   }
//-->

