//
//(c)hobby-hour.com
//
function rcc_change_color(rcc_select_id1)
{
var rcc_selectid=document.getElementById(rcc_select_id1);
var rcc_color_nr=rcc_selectid.selectedIndex;
var focus_pl=document.getElementById("band_submit");
var res_div=document.getElementById("res_calc");
rcc_selectid.className="b_"+(rcc_color_nr);
focus_pl.focus();
}

function reset_band_form() 
{
document.getElementById("color_code_form").reset(); 
for(i=1; i< 6; i++)
	{
	document.getElementById("band"+i).className="band_select1";
	}
}

function rcc_restore_colors()
{
for(i=1; i< 6; i++) 
	{
	var rcc_selectid2=document.getElementById("band"+i);
	rcc_selectid2.className="b_"+(rcc_selectid2.selectedIndex);
	}
}


