function recebe_foco(id) {
	estilo=document.getElementById(id);
	estilo.style.background="#FFFFCC";
}
function perde_foco(id) {
	estilo=document.getElementById(id);
	estilo.style.background ="#FFFFFF";
}
function valida_form() {
	with (frm_cadnews) {
		if (nome.value=="") {
			alert("O nome deve ser preenchido");
			nome.focus();
			return false;
		}
		if (email.value=="") {
			alert("O e-mail deve ser preenchido");
			email.focus();
			return false;
		}
	}
return true;
}