function checkFrameset()
{
  if(!parent.topframe){
    var result1 = location.pathname.search(/kollektion/);
    var result2 = location.pathname.search(/kontakt/);
    if (result1 != -1){
      location.href="/index.php?se=03&ct=" + location.pathname.substr(0,location.pathname.length-4);
    }
    else if (result2 != -1){
      location.href="/index.php?se=04&ct=" + location.pathname.substr(0,location.pathname.length-4);
    }
    else {
      location.href="/index.php?ct=" + location.pathname.substr(0,location.pathname.length-4);
    }
  }
}

