/**
* vote.js
*
*/

var	colors = new Array("","#0000ff","#202f70","#3f2060","#5f2050","#7f1f4f","#90103f","#b0102f","#cf0f1f","#e0000f","#ff0000");

/**
* showdiv
* muestra el color
*/
function showdiv (id)
{

	for (i=1;i<=id;i++)
	{
		nspan = document.getElementById("vpanel_"+i);
		rspan = document.getElementById("vradio_"+i);
		nspan.style.fontWeight = "bold";
		nspan.style.color = "white";
		nspan.style.backgroundColor = colors[i];
		rspan.style.backgroundColor = colors[i];
	}
}

/*
* hidediv
* oculta el color
*/
function hidediv (id)
{
	for (i=1;i<=id;i++)
	{
		nspan = document.getElementById("vpanel_"+i);
		rspan = document.getElementById("vradio_"+i);
		nspan.style.fontWeight = "normal";
		nspan.style.color = "gray";		
		nspan.style.backgroundColor = "white";
		rspan.style.backgroundColor = "white";
	}
}