
function bgclr(elm,flag){
	if(flag){
		elm.style.backgroundColor = "#99A8C2";
	}else{
		elm.style.backgroundColor = "#FFFFFF";
	}
}

