function entra_foco_textbox(objeto) {
	document.getElementById(objeto).select();
	document.getElementById(objeto).style.background = '#DBDBC2';
}
function sai_foco_textbox(objeto) {
	document.getElementById(objeto).style.background = '#E6E6D4';
}
function entra_foco_textarea(objeto) {
	document.getElementById(objeto).select();
	document.getElementById(objeto).style.background = '#DBDBC2';
}
function sai_foco_textarea(objeto) {
	document.getElementById(objeto).style.background = '#E6E6D4';
}