if (top.location != self.location) {
    top.location.replace(self.location)
}
function ucitaj()
{
   if(Request.QueryString('jez').Count > 0){
     top.location="http://www.google.com/translate_c?hl=en&langpair=en%7C" + Request.QueryString('jez').toString() + "&u=" + window.location.href;
   }
}
function naz(sta){
  if(sta == "index"){
     if(Request.QueryString('langpair').Count > 0){
        var kojijezik = Request.QueryString('langpair').toString().substring(3);
        top.location.replace("http://www.google.com/translate_c?hl=en&langpair=en%7C" + kojijezik + "&u=http://www.tucovic.org/" + sta + ".html");
     }else{
        top.location.replace("http://www.tucovic.org/" + sta + ".html");
     }
   }else if(sta == "Katalog"){
      if(Request.QueryString('langpair').Count > 0){
        var kojijezik = Request.QueryString('langpair').toString().substring(3);
        top.location.replace("http://www.tucovic.org/" + sta + ".html?jez=" + kojijezik);
     }else{
        top.location.replace("http://www.tucovic.org/" + sta + ".html");
     }
   }
}