function getstarImage(star,style)
{
	if(star < 1)
		star = 4;
	if(star > 5)
		star = 5;
	return '<img src="/images/star/star' + style + '_' + Math.floor(star + 0.5) + '.gif">';
}

function getstarImageEx(star,style)
{

	star = Math.floor(star * 2);
	if(star < 1)
		star = 6;
	if(star > 10)
		star = 10;
	return '<img src="/images/star/starEx' + style + '_' + star + '.gif" width="80">';
}