// we want deep links to be presented correctly

function framecheck() {
   if (top.frames.length == 0)
   {
      //if (location.search == "")
        location.replace("http://www.osterfestival.at/07start.html?url=" + escape(location.href));
      //else
      //  location.replace("http://www.osterfestival.at/reframe.html?url=" + escape(location.href+location.search));
   }
   else if (!top.noreload && top.location.search)
   {
      var parts = top.location.search.split("url=");
      var url = unescape(parts[1]);
      if (!url.match(/^http:\/\/w[a-z0-9]+\.(galeriestbarbara|musikplus|osterfestival|ibcl)\.at/))
         top.location.replace("http://www.osterfestival.at/07start.html");
      if (url != location.href)
         location.replace(url);
      top.noreload = true;
   }
}

framecheck();

