/*
 * JavaScript frames.js fuer http://www.thetyphoons.de
 * Autor: Udo Becker [http://www.udobecker.net]
 */
function forceFramesHome()
{
  if (parent.location.href == self.location.href)
  {
    self.location.href = "../index.html";
  }
}
function forceFrames()
{
  if (parent.location.href == self.location.href)
  {
    self.location.href = "../index.html?" + self.location.pathname.substring(1, self.location.pathname.length);
  }
}
function frameCall()
{
  if (self.location.search)
  {
    frames.main.location.href = self.location.search.substring(1, self.location.search.length);
  }
}