function mpridej(url)
{
	var p=document.getElementById('priplatky');
	
	var u='/kosik/?produkt='+url;
	
	if(p){
		var i, inps=p.getElementsByTagName('INPUT');
		for(i=0;i<inps.length;i++){
			if(inps[i].checked){
				u+= '&p[]='+encodeURIComponent(inps[i].value);
			}
		}
	}
	
	document.location.href=u;
	return false;
}
