
function goToShop(sid, pid, cid)
{
	var str;
	if ((typeof(sid)=="number") && (typeof(pid)=="number") && (typeof(cid)=="number") && sid>0 && pid>0 && cid>0)
	{
		str="<a target=\"_blank\" rel=\"nofollow\" href=\"goToShop.php?";
		str+="shopID="+sid + "&productID="+pid+"&cID="+cid;
		str+="\" onClick=\"javascript:urchinTracker('/golas/click.com');\">Go to shop</a>";
	}
	
	document.write(str);
}