function rankStar(num,targetN) {
	var values = num*10 + 'px';
	document.getElementById(targetN).style.width = values;
}
