function chk_form(theform, validar_dados) {


	var regexInt = /^[0-9]*$/;

	if (validar_dados) {
// Início If ----------------------------------------------------------------------



		// Resgata Dados Pessoais

		var nome		=	theform["nome_contato"];
		var email		=	theform["email_contato"];
		var comentario	=	theform["comentario"];



// Valida Dados


		if (!nome.value) {
			alert('O Nome é um campo obrigatório!');
			nome.focus();
			return false;
		}

		if (!email.value) {
			alert('O Email é um campo obrigatório!');
			email.focus();
			return false;
		} else {
			if ((email.value.replace("@","") == email.value) || (email.value.replace(".","") == email.value) || (email.value.replace(" ","") != email.value)) {
				alert('Email inválido.');
				email.focus();
				return false;
			}
		}

		if (!comentario.value) {
			alert('O Comentário é um campo obrigatório!');
			comentario.focus();
			return false;
		}

// Fim If ----------------------------------------------------------------------
	}
	
	
/*	// evita de aparecer o popup de aviso quando sair da pagina	
	dontShowPopUpOnUnload();*/
	
	//Se deu tudo certo
	return true;
}
