// setshop.js (c)2004 Nutzwerk GmbH

var i = top.frames.length;
if (i == 0){top.location.href="../index.html";}
var aktiv = window.setTimeout("SetShop()",5000);

function SetShop(){
 for(j=0; j < document.links.length; j++){
  if (document.links[j] == "https://www.nutzwerk.com/safersurf-shop/index.html" && top.location.href.indexOf("/speed")>-1){
   document.links[j].href = "https://www.nutzwerk.com/safersurf-shop/index-speed.html" + "?" + top.shop_ID;
  }
  else if (document.links[j] == "https://www.nutzwerk.com/safersurf-shop/index.html"){
   document.links[j].href = "https://www.nutzwerk.com/safersurf-shop/index.html" + "?" + top.shop_ID;
  }
 }
 //
 for(var i=0; i < parent.frames.length; i++){
  for(j=0; j < parent.frames[i].document.links.length; j++){
   if (parent.frames[i].document.links[j] == "https://www.nutzwerk.com/safersurf-shop/index.html" && top.location.href.indexOf("/speed")>-1){
     parent.frames[i].document.links[j].href = "https://www.nutzwerk.com/safersurf-shop/index-speed.html" + "?" + top.shop_ID;
   }
   else if (parent.frames[i].document.links[j] == "https://www.nutzwerk.com/safersurf-shop/index.html"){
     parent.frames[i].document.links[j].href = "https://www.nutzwerk.com/safersurf-shop/index.html" + "?" + top.shop_ID;
   }
   else if (parent.frames[i].document.links[j] == "https://www.nutzwerk.com/safersurf-shop/index-speed.html"){
     parent.frames[i].document.links[j].href = "https://www.nutzwerk.com/safersurf-shop/index-speed.html" + "?" + top.shop_ID;
   }
  }
 }
}