function selcp(selName)
{
	if (selName == "")
	{
		window.location.href = "?"
		return ;
	}
		
	var pos = selName.indexOf("Š¸")
	if (pos != -1)
	{
		var bigname = selName.substring(0, pos);	
		var smallname = selName.substring(pos+1, selName.length)
		window.location.href ="product.asp?bigclassname="+bigname+"&smallclassname="+smallname;
	}
	else
		window.location.href ="product.asp?bigclassname="+selName;
}
function selshowcp(v)
{
	if (v == "")
	{
		return ;
	}
	var pos = v.indexOf("ŠĀŠĀ");
	if (pos != -1)
	{
		var bigname = v.substring(pos+2, v.length)
		window.location.href ="product.asp?bigclassname="+bigname;
	}
	else
		window.location.href ="showcp.asp?id="+v;

}

