var thispagename = self.location.href.substring(self.location.href.lastIndexOf('/')+1,self.location.href.length);
if (thispagename == "") {thispagename = "001.php";}
if (!parent.text) {window.location.href = "index.htm?"+thispagename;}

Seite = new Array("001",
                  "a01","a02","a03","a04","a05","a06","a07","a08","a09","a10","a11","a12",
                  "b01","b02","b03","b04","b05","b06","b07",
                  "d01","d02","d03","d04","d05","d06","d07",
                  "e01","e02","e03","e04","e05","e06","e07",
                  "f01","f02","f03","f04","f08","f09","f10","f11","f12","f13","f14",
                  "g01","g02","g03","g04","g05","g06","g07","g08",
                  "h01","h02","h03","h04","h05","h06","h07","h08","h09",
                  "i01","i02","i03","i04","i05","i06","i07","i08",
                  "k01","k02","k03","k04","k05",    
                  "l01","l02","l03","l04","l05","l06","l07",
                  "m01","m02","m03","m04","m05","m06","m07",
                  "n01","n03","n05","n06","n07","n08","n09","n10","n11","n12","n13","n14","n15","n16",
                  "p01","p02","p03","p04","p05",
                  "r01","r02","r03","r04","r05","r06","r07","r08",
                  "t01","t02","t03","t06",
                  "z01");

function page() {
  h=0;
  j=1;
  for (var i = 0; i < Seite.length; i++)
      if  (thispagename == Seite[i]+".php") {
          h=i-1;
          j=i+1;
          break;
          }
  if (h==-1) h=0;
  if (j==Seite.length) j=Seite.length-1;

  document.writeln(
    '<div class="top">'+
    '<form name="suche" method="post" action="suche.php">'+
    '<map name="choice">'+
      '<area shape="rect" coords="0,0,61,29" href="'+Seite[h]+'.php" alt="zurück">'+
      '<area shape="rect" coords="75,0,160,29" href="basket.htm" alt="Drucken">'+
      '<area shape="rect" coords="516,0,672,29" href="javascript:frameprint()" alt="Drucken">'+
      '<area shape="rect" coords="678,0,739,29" href="'+Seite[j]+'.php" alt="vor">'+
    '<\/map>'+
    '<img src="top.png" width="740" height="30" alt="" usemap="#choice">'+
    '<span style="position:absolute;top:2px;left:270px; color:#FFFFFF;">'+
      '<input name="such" type="text" size="30" maxlength="33" style="border:1px solid #FFFFFF; height:24px; width:220px; font-size:14px;">'+
    '<\/span>'+
    '<span style="position:absolute;top:0px;left:190px;">'+
      '<input name="submit" type="image" src="leer1.png" value="submit">'+
    '<\/span>'+
    '<\/form>'+
    '<\/div>');
  }

function frameprint() {
  window.parent.text.focus();
  window.print();
}

function hidebuy() {
  document.getElementById("login").style.display = "none";
  document.getElementById("popup").style.display = "none";
  parent.document.getElementById("popup").style.display = "none";
  resetpage();
}

function resetpage() {
  thispagename = thispagename.substring(0,thispagename.lastIndexOf('?'));
  location.replace(thispagename);
}