// JavaScript Document


<!--Change color  on focus-->
function ChangeBoxColor(check,id) {
	
	if (check == 1) {
		document.getElementById(id).style.backgroundColor = "#000066";
		document.getElementById(id).style.color = "#FFCCCC";
	}
	

	else {
		document.getElementById(id).style.backgroundColor = "#666666";
		document.getElementById(id).style.color = "#CCFFFF";
	
	}
}
<!--end Change color  on focus-->

