// JavaScript Document

function confere_contato(){

	if(document.update.CLI_NOME.value==''){

		alert('Preencha o campo nome!');

		document.update.CLI_NOME.focus();

		document.update.CLI_NOME.style.background ="#A09A8A";

	return false;

	}

	if(document.update.CLI_EMAIL.value==''){

		alert('Preencha o campo e-mail!');

		document.update.CLI_EMAIL.focus();

		document.update.CLI_EMAIL.style.background ="#A09A8A";

	return false;

	}

	if(document.update.texto.value==''){

		alert('Preencha o campo texto!');

		document.update.texto.focus();

		document.update.texto.style.background ="#A09A8A";

	return false;

	}

	document.update.submit();

	return true;

}
function janelaSecundaria(url){
	window.open(url, 'Pagina', 'STATUS=NO, TOOLBAR=NO, LOCATION=NO, DIRECTORIES=NO, RESISABLE=NO, SCROLLBARS=NO, TOP=10, LEFT=50, WIDTH=795, HEIGHT=580')
}