function poker(u,w,h){ mywin = window.open(u,"pop",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+w+',height='+h+''); }


function igrokov_v_bossmedia( count, root, suffixes, withCount ) {
	if (withCount)
		root = count + ' ' + root
	if (count > 9)
		count = count % 10
	if (count == 1)
		return root + suffixes[0]
	if (count > 1 && count < 5)
		return root + suffixes[1]
	if ((count > 4 && count <= 9) || count == 0)
		return root + suffixes[2]
	}

