<!--

function urldecode(ch)
{
   ch = ch.replace(/[+]/g," ");
   return unescape(ch)
}


var argTitle;
var argShopName;
var argLink;
var argKeyword;

if(top.frames.length >= 0 )
{
  str= location.href;

  if (str.indexOf("?")>=0)
  {
    posi=str.indexOf("titel=");
    if (posi>=0)
    {
	    posi2=str.indexOf("*",posi);
	    if (posi2>0)
	    {
		    argTitle=urldecode(str.substring(posi+6,posi2));
		}
    	else 
    	{
		    argTitle=urldecode(str.substring(posi+6,str.length));
		}
    }	

    posi=str.indexOf("query=");
    if (posi>0)
    {
    	posi2=str.indexOf("*",posi);
    	if (posi2>0)
    	{
    		argKeyword=str.substring(posi+6,posi2);
    	}
    	else 
    	{
    		argKeyword=str.substring(posi+6,str.length);
    	}
    }	

    posi=str.indexOf("link=");
    if (posi>0)
    {
		argLink=str.substring(posi+5,str.length);
    }	
    else
    {
       argLink="";
    }
  }

  posi=str.indexOf("shop=");
  if (posi>0)
  {
	posi2=str.indexOf("*",posi,str.length);
	if (posi2>0)
	{
		argShopName=urldecode(str.substring(posi+5,posi2));
	}
	else
	{
		argShopName=urldecode(str.substring(posi+5,str.length));
	}
  }

}

//-->
