function select_vote(id)
{
	for(var i = 1; i<=10; i++)
	{
		thisId = document.getElementById(i);
		thisId.style.border = "2px solid #CB1010";
		thisId.style.backgroundColor = "#DDDDDD";
		thisId.style.color = "#444444";
	}
	getthisId = document.getElementById(id);
	getthisId.style.border = "2px solid #CB1010";
	getthisId.style.backgroundColor = "#96FA96";
	getthisId.style.color = "#444444";
	document.vote_form.vote.value = id;
}

function list_buttons()
{
	var list = "<table style='font:bold 11px tahoma'><tr>";
	
	for(var i = 1; i<=10; i++)
	{
		list += '<td width="24" height="24" align="center" style="background-color:#DDDDDD;color:#444444;border:2px solid #CB1010" id='+ i +' onClick="select_vote(id)">'+ i +'</td>';
		if((i%5)==0 && i!=10)
		{
			list = list + "</tr><tr>";
		}
	} 
	list += "</tr></table>";
	document.getElementById('vote_buttons').innerHTML = list;
}