/*
  if((!parent.FrameMainMain) && (!location.href.match('fftest')))
  {
    //var pageCheck = location.href;
    //alert(pageCheck);
    
    if(location.href.indexOf('HtmlWeltTitle') != '-1' )
    {
      if(location.href.indexOf('damen.html') != '-1' )
        location.href="http://www.buffaloshop.de/index_de.html?meta=damen";
      
      if(location.href.indexOf('herren.html') != '-1' )
        location.href="http://www.buffaloshop.de/index_de.html?meta=herren";
      
      if(location.href.indexOf('accessoires.html') != '-1' )
        location.href="http://www.buffaloshop.de/index_de.html?meta=accessoires";
      
      if(location.href.indexOf('neu.html') != '-1' )
        location.href="http://www.buffaloshop.de/index_de.html?meta=neu";
      
      if(location.href.indexOf('nice.html') != '-1' )
        location.href="http://www.buffaloshop.de/index_de.html?meta=sale";
        
      if(location.href.indexOf('trend.html') != '-1' )
        location.href="http://www.buffaloshop.de/index_de.html?meta=trend";
    }
    else if((location.href.indexOf('HtmlOver') != '-1' ) && (location.href.indexOf('HtmlProduct') == '-1' ))
    {
      if(location.href.indexOf('damen') != '-1' )
        location.href="http://www.buffaloshop.de/index_de.html?meta=damen";
        
      if(location.href.indexOf('herren') != '-1' )
        location.href="http://www.buffaloshop.de/index_de.html?meta=herren";
        
      if(location.href.indexOf('accessoires') != '-1' )
        location.href="http://www.buffaloshop.de/index_de.html?meta=accessoires";
    }
    else if((location.href.indexOf('HtmlProduct') != '-1' ))
    {
      var artikelPid = location.href.substr(location.href.indexOf('000'),8);
      var artikelWelt = filterParamValue("welt");
      var artikelCategory = filterParamValue("division");
      //alert(artikelPid);
      //alert(artikelWelt);
      //alert(artikelCategory);
      location.href="http://www.buffaloshop.de/index_de.html?pid="+artikelPid+"&welt="+artikelWelt+"&category="+artikelCategory+"&division=schuhe";
    }
    else if((location.href.indexOf('HtmlMain') != '-1' ) || (location.href.indexOf('HtmlBasket') != '-1' ))
    {
      if(location.href.indexOf('sitemap') != '-1' )
        location.href="http://www.buffaloshop.de/index_de.html?meta=sitemap";
        
      if(location.href.indexOf('hilfe') != '-1' )
        location.href="http://www.buffaloshop.de/index_de.html?meta=hilfe";
      
      if(location.href.indexOf('kontakt') != '-1' )
        location.href="http://www.buffaloshop.de/index_de.html?meta=kontakt";
        
      if(location.href.indexOf('meinung') != '-1' )
        location.href="http://www.buffaloshop.de/index_de.html?meta=meinung";
      
      if(location.href.indexOf('datenschutz') != '-1' )
        location.href="http://www.buffaloshop.de/index_de.html?meta=datenschutz";
      
      if(location.href.indexOf('agb') != '-1' )
        location.href="http://www.buffaloshop.de/index_de.html?meta=agb";
      
      if(location.href.indexOf('impressum') != '-1' )
        location.href="http://www.buffaloshop.de/index_de.html?meta=impressum";
      
      if(location.href.indexOf('storefinder') != '-1' )
        location.href="http://www.buffaloshop.de/index_de.html?meta=storefinder";
      
      if(location.href.indexOf('basket') != '-1' )
        location.href="http://www.buffaloshop.de/index_de.html?meta=warenkorb";
      
      if(location.href.indexOf('newsletter') != '-1' )
        location.href="http://www.buffaloshop.de/index_de.html?meta=newsletter";
    }
    else
    {
      location.href="http://www.buffaloshop.de";
    }
  }
  
  function filterParamValue(paramName)
  {
	var arrStartParam = location.search.substr(1).split("&");
	var Rueckgabe = "";
	for(var i=0; i<arrStartParam.length; i++){
		keyVal = arrStartParam[i].split("=");
		if(keyVal[0].toLowerCase()==paramName){
			Rueckgabe = keyVal[1];
		}
	}
	return Rueckgabe;
  }
*/