function CestaPers(userid)
{
var PoziceCart = userid.indexOf("&cart");
	PersonFile = "";
	
 if (PoziceCart > -1)
  { userid = userid.substr(0, PoziceCart); } 
 if (userid.length == 0)
  { PersonFile = "personalize.js"; } else
  { PersonFile = userid + "/personalize.js"; }
 document.writeln('<script src="' + PersonFile +'"></script>'); 
}

function PredanyParametr(Parametr)
{
var Odkaz = window.location.href;
    Hodnota = "";
    Pozice = 0;
	Pozice2 = 0;
	DelkaCelkem = 0;
	DelkaNazvu = 0;
  
  /* nalezeni prislusne hodnoty */
  Pozice = Odkaz.indexOf(Parametr + "=");
  if (Pozice > -1)
    {
     DelkaNazvu = Parametr.length + 1;
     DelkaCelkem = Odkaz.length;  
     Hodnota = Odkaz.substring(Pozice + DelkaNazvu, DelkaCelkem);
	 /* test na dalsi oddelovac */
	 Pozice2 = Hodnota.indexOf("&");
	 if (Pozice2 > -1)
	   { Hodnota = Hodnota.substring(0, Pozice2); }
	}  
  else
    {
	 Hodnota = "";
	}
  return Hodnota;
}


