function divrowcolor(i,way)
{
	if(way == 'on')
	{
		document.getElementById(i + 'a').style.backgroundColor='#3876F2';
		document.getElementById(i + 'a').style.color='white';
		document.getElementById(i + 'b').style.backgroundColor='#3876F2';
		document.getElementById(i + 'b').style.color='white';
		document.getElementById(i + 'c').style.backgroundColor='#3876F2';
		document.getElementById(i + 'c').style.color='white';
		document.getElementById(i + 'd').style.backgroundColor='#3876F2';
		document.getElementById(i + 'd').style.color='white';
		document.getElementById(i + 'e').style.backgroundColor='#3876F2';
		document.getElementById(i + 'e').style.color='white';
	}
	else
	{
		document.getElementById(i + 'a').style.backgroundColor='white';
		document.getElementById(i + 'a').style.color='#333';
		document.getElementById(i + 'b').style.backgroundColor='white';
		document.getElementById(i + 'b').style.color='#333';
		document.getElementById(i + 'c').style.backgroundColor='white';
		document.getElementById(i + 'c').style.color='#333';
		document.getElementById(i + 'd').style.backgroundColor='white';
		document.getElementById(i + 'd').style.color='#333';
		document.getElementById(i + 'e').style.backgroundColor='white';
		document.getElementById(i + 'e').style.color='#333';
	}
}