function activ_div(div1,div2,div3){
	document.getElementById(div1).style.backgroundColor='#e4ebbf';
	document.getElementById(div2).style.backgroundColor='#e4ebbf';
	document.getElementById(div3).style.backgroundColor='#e4ebbf';
}
function unactiv_div(div1,div2,div3){
	document.getElementById(div1).style.backgroundColor='#f8f8f8';
	document.getElementById(div2).style.backgroundColor='#f8f8f8';
	document.getElementById(div3).style.backgroundColor='#f8f8f8';
}
