// JavaScript Document
<!--
	function recebe_foco(id) {
		estilo=document.getElementById(id);
		estilo.style.background="#FFFFCC";
	}
	function perde_foco(id) {
		estilo=document.getElementById(id);
		estilo.style.background ="#FFFFFF";
	}
//-->