

	function Color(Local,act){
		if(act==1){
			document.getElementById(Local).style.border				=	'1px #006699 solid';
			document.getElementById(Local).style.backgroundColor	=	'#FFFFFF';
			document.getElementById(Local).style.color				=	'#003366'
		}
		if(act==2){
			document.getElementById(Local).style.border				=	'1px #CCCCCC solid';
			document.getElementById(Local).style.backgroundColor	=	'#003366';
			document.getElementById(Local).style.color				=	'#CCCCCC';
		}
	}
	
	

