function doHighlight(val)
{
	for(var x = val; x > 0; --x)
	{
		document['e'+x].src='style/colored_star.gif'
	}
}

function doClear(val)
{
	for(var x = val; x > 0; x--)
	{
		document['e'+x].src='style/blank_star.gif'
	}
}