
function pinta(obj) {
	obj.style.backgroundColor="#FFFFFF;";
}
function apaga(obj) {
	obj.style.backgroundColor="#000000;";
}
function validaForm(obj) {
	if (obj.nome.value=='') {
		alert('Informe o nome.');
		obj.nome.focus();
		return false;
	}	
	if (obj.email.value=='') {
		alert('Informe o e-mail.');
		obj.email.focus();
		return false;
	}
	if (obj.assunto.value=='') {
		alert('Informe um Assunto.');
		obj.assunto.focus();
		return false;
	}
	if (obj.mensagem.value=='') {
		alert('Digite a mensagem.');
		obj.mensagem.focus();
		return false;
	}	
}