function change(id)
{
	if (id) {
		var whatRow = id.substring(0,3);
		styleLeftItem = whatRow + "L";
		styleRightItem = whatRow + "R" ;
		document.getElementById(styleLeftItem).style.border = "1px solid #ba8645";
		document.getElementById(styleLeftItem).style.background= "#800303";
		document.getElementById(styleLeftItem).style.padding= "4px";
		document.getElementById(styleLeftItem).style.paddingTop= "2px";
		document.getElementById(styleLeftItem).style.paddingBottom= "2px";		
		document.getElementById(styleRightItem).style.color= "#800303";
	}
}
function recover(id)
{
	if (id) {
		var whatRow = id.substring(0,3);
		styleLeftItem = whatRow + "L";
		styleRightItem = whatRow + "R" ;
		document.getElementById(styleLeftItem).style.border = "1px solid #800303";
		document.getElementById(styleLeftItem).style.background= "#ba8645";	
		document.getElementById(styleRightItem).style.color= "#ba8645";
	}
}