function DameVotos(v,c,i,d){
	var T = new Array();
	var TXT = new Array('Muy Malo','Malo','OK','Bueno','Muy bueno');
	if(v!=0)
		var Cantv = Math.round((v/c));
	else
		var Cantv = 0;

	if(d==1) var Dis = ' disabled="disabled"';
	for(h=1;h<=5;h++){
		T[h] = (Cantv==h) ? 'checked="checked"' : '';
		document.write('<input class="hover-star" type="radio" name="test-3B-rating-V' + i + '" value="' + h + '" title="' + TXT[(h-1)] + '"' + Dis + ' ' + T[h] + '/>');
	}
	document.write(' <font size="1">&nbsp;&nbsp;' + c + ' Votos</font>');
}