/*
01.2005 - pinkytoes.com

check, if the content-file is top(alone) without a navigation (coming from search-engine, etc)
-->>load all frames (navigation, content, etc.)

::dybnamically generated asp-files have already ?xxxxx values(needed to load right content)
::html-files send the values when they call the function(see file checkIfFrameTopHtml.js)
*/


a="top";
b="loc";
c="ation";
d=a+"."+b+c;
e=b+c;

if(eval(d) == eval(self.e)){//asp window without navigation, etc.
  if(window.location.search != ''){
     var showWhat = (window.location.search).split("?isbnNr=");
     document.location.href = "../vdf.asp?isbnNr=" + showWhat[1]; //load all frames around content-page
  }
  else{//don't know what page > load startpage
     document.location.href="../index.html"
  }
}
