function GetStarSrc(gold)
{
	return 'http://www.dzyszla.aplus.pl/gfx/'+((gold)?'gold':'blank')+'star.gif';
}
function SetStars(x)
{
	for(i=1;i<=6;i++) document.getElementById('s_'+i).src=GetStarSrc(i<=x);
	document.getElementById("s").value=x;
}
function WriteStars(ocena,can_vote)
{
	var ret='<input type="hidden" id="s" value="0">';
	var ocena_int=Math.round(ocena);
	for(i=1;i<=6;i++)
	{
		if (can_vote) ret+='<input type="image" name="s" id="s_'+i+'" value="'+i+'" src="'+GetStarSrc(i<=ocena_int)+'" onMouseOver="SetStars('+i+');" onMouseOut="SetStars('+ocena_int+');"';
		else ret+='<img src="'+GetStarSrc(i<=ocena_int)+'" width="12" height="12"';
		ret+=' alt="'+((i<=ocena_int)?'+':'-')+'" title="Ocena: '+((ocena_int>0)?ocena:'brak oceny');
		if (can_vote) ret+='; Oceń na: '+i;
		ret+='">';
	}
	
	document.write(ret);
}