function buscarProduto(form){
		var doc = eval("document."+form);
		doc.action = "index.php?tipo=bus&busca="+url_encode($("#busca").attr("value"));
		doc.submit();
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function trocarImagem(id1, id2){
	img1 = $("#"+id1).attr("cam");
	img2 = $("#"+id2).attr("cam");
	
	$("#"+id1).attr({src:"thumb.php?x=72&y=54&img="+img2});
	$("#"+id2).attr({src:"thumb.php?x=380&y=380&img="+img1});
	
	$("#"+id1).attr({cam:""+img2});
	$("#"+id2).attr({cam:""+img1});
	
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function mostrarEsconder(id, quant, pref){
	for(i=1; i<=quant; i++){
		if(i == id){
			$("#"+pref+""+i+"").css({display:"block"});
		}else{
			$("#"+pref+""+i+"").css({display:"none"});
		}
	}
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function abrirFechar(id){
	if($("#"+id).css("display") == "none"){
		$("#"+id).css({display:"block"});
	}else{
		$("#"+id).css({display:"none"});
	}
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function cursoEnviar(form){
	if(validacao(form)){
			var doc = eval('document.'+form);
			return true;
	}
	return false;
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function comoadquirirEnviar(form){
	if(validacao(form)){
		var doc = eval('document.'+form);
		var tam = doc.elements.length;
		var novo = "";
		for(i=0; i<tam; i++){
			if((doc.elements[i].type == 'checkbox')&&(doc.elements[i].checked == true)){
				novo = novo + '@' + doc.elements[i].value + '@'; 
				$("#lst_idprod").attr({value:novo});
			}
		}			
		return true;
	}
	return false;
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function contatoEnviar(form){
	if(validacao(form)){
			var doc = eval('document.'+form);
			return true;
	}
	return false;
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=











///FIM


//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function validarLogin(form, tipo){
	doc = eval('document.'+form); 
	if(doc.login.value == ''){
		alert('Campo usuário é de preenchimento obrigatório');
		doc.login.focus();
		return false;
	}
	if(doc.senha.value == ''){
		alert('Campo senha é de preenchimento obrigatório');
		doc.senha.focus();
		return false;			
	}
	if(tipo == 'usu'){
		doc.action = "autenticar_usuario.php";	
	}else{
		doc.action = "admin/autenticar_cliente.php";			
	}
	return true;
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function verificarLogin(form, elem, suf){
	if(elem.value == ""){
		$("#elogin"+suf).css({display:"block"});
		$("#elogin"+suf).html("Campo de preenchimento obrigatorio.");	
	}else{
		$("#elogin"+suf).css({display:"block"});
		$("#elogin"+suf).html("Aguarde...");	
		if((form == 'f_usuario_ins') || (form == 'f_usuario_edi')){//=== Usuario
			if(suf == '_ins'){
				strPost = 'login='+ elem.value +'&op=ins';
			}else{
				strPost = 'login='+ elem.value +'&op=edi&id='+ $("#id_usuario").attr("value");
			}
			ajax('usuario_verificar_login.php', 'elogin'+suf, strPost, 0, false, '', '');
		}else{//=== Colunista
			if(suf == '_ins'){
				strPost = 'login='+ elem.value +'&op=ins';
			}else{
				strPost = 'login='+ elem.value +'&op=edi&id='+ $("#id_colunista").attr("value");
			}					
			ajax('usuario_verificar_login.php', 'elogin'+suf, strPost, 0, false, '', '');
		}
	}
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function auxVerificarLogin(form, suf){
	if($("#elogin"+suf).html().lastIndexOf("conf=\"ok\"") == -1){
		validacao(form);
		return false;
	}else{
		if(validacao(form)){
			return true;
		}
	}
	return false;
}
//:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
function funcaoInserir(form, comp){
	var doc = eval("document."+form);
	if(validacao(form)){
		doc.target = "script_iframe";
		doc.action = comp+"_gerenciar_inserir_script.php";
		doc.submit();
		organizarAlert(comp+"_gerenciar.php",false);
		limparGlobais();
	}else{
		doc.action = "";
		return false;
	}
}
//:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
function funcaoEditar(form, comp){
	if(validacao(form)){
		var doc = eval("document."+form);
		doc.target = "script_iframe";
		doc.action = comp+"_gerenciar_editar_script.php";
		doc.submit();
		organizarAlert(comp+"_gerenciar.php",false);
		limparGlobais();
	}else{
		doc.action = "";
		return false;	
	}
}
//:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
function funcaoExcluir(form, comp){
	if(validacao(form)){
		$("#idexc").attr({value:arraux[5]});
		var doc = eval("document."+form);
		doc.target = "script_iframe";
		doc.action = comp+"_gerenciar_excluir_script.php";
		doc.submit();
		organizarAlert(comp+"_gerenciar.php",false);
		limparGlobais();
	}else{
		doc.action = "";
		return false;	
	}	
	/*
	if(validacao(form)){
			var strPost = "";
			strPost = strPost + 'idexc='+url_encode(arraux[5]);
			ajax(comp+"_gerenciar_excluir_script.php", '', strPost, 1, false, 2500, comp+"_gerenciar.php");
	}else{
		return false;	
	}*/
}
//:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
function  funcaoSelecionar(id, form, comp){
		var strPost = '';
		strPost = strPost + 'id='+id;
		if(limparGlobais() && controlarAbas(3, 4)){
			ajax(comp+"_gerenciar_editar.php", 'div_3', strPost, 0, true, '', '');
		}
}
//:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
function usuarioBuscar(form){
		var strPost = '';
		strPost = strPost + 'nome='+url_encode($("#nome_bus").attr("value"));
		strPost = strPost + '&email='+url_encode($("#email_bus").attr("value"));
		strPost = strPost + '&login='+url_encode($("#login_bus").attr("value"));
		
		limparGlobais();
		controlarAbas(2, 4);

		ajax('usuario_gerenciar_buscar_part1.php', 'div_2', strPost, 0, true, '', '');
}
//:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
function categoriaBuscar(form){
		var strPost = '';
		strPost = strPost + 'descricao='+url_encode($("#descricao_bus").attr("value"));
		
		limparGlobais();
		controlarAbas(2, 4);

		ajax('categoria_gerenciar_buscar_part1.php', 'div_2', strPost, 0, true, '', '');
}
//:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
function produtoBuscar(form){
		var strPost = '';
		strPost = strPost + 'descricao='+url_encode($("#descricao_bus").attr("value"));
		strPost = strPost + '&categoria='+url_encode($("#categoria_bus").attr("value"));
		strPost = strPost + '&texto='+url_encode($("#texto_bus").attr("value"));
		
		limparGlobais();
		controlarAbas(2, 4);

		ajax('produto_gerenciar_buscar_part1.php', 'div_2', strPost, 0, true, '', '');
}
//:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
function colunistaBuscar(form){
		var strPost = '';
		strPost = strPost + 'nome='+url_encode($("#nome_bus").attr("value"));
		strPost = strPost + '&email='+url_encode($("#email_bus").attr("value"));
		strPost = strPost + '&curriculo='+url_encode($("#curriculo_bus").attr("value"));
		strPost = strPost + '&trabalho='+url_encode($("#trabalho_bus").attr("value"));
		strPost = strPost + '&login='+url_encode($("#login_bus").attr("value"));
		
		limparGlobais();
		controlarAbas(2, 4);

		ajax('colunista_gerenciar_buscar_part1.php', 'div_2', strPost, 0, true, '', '');
}
//:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::








//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function agendaInserir(form){
	if(validacao(form)){
		//if(checarDestaque(form, 'op_ins')){
			var doc = eval('document.'+form);
			doc.action = "agenda_gerenciar_inserir_script.php";
			organizarAlert('agenda_gerenciar.php',false);
			limparGlobais();
			return true;
		//}
	}
	return false;
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function agendaBuscar(form){
	if(validacao(form)){
		var strPost = '';
		strPost = strPost + '&data_ini='+url_encode($("#data_ini_bus").attr("value"));
		strPost = strPost + '&data_fim='+url_encode($("#data_fim_bus").attr("value"));
		strPost = strPost + '&descricao='+url_encode($("#descricao_bus").attr("value"));
		strPost = strPost + '&local='+url_encode($("#local_bus").attr("value"));
		strPost = strPost + '&opdt='+url_encode($("#opdt_bus").attr("value"));

		limparGlobais();
		controlarAbas(2, 4);

		ajax('agenda_gerenciar_buscar_part1.php', 'div_2', strPost, 0, true, '', '');
	}
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function agendaSelecionar(id, form){
		var strPost = '';
		strPost = strPost + 'id='+id;
		
		limparGlobais();
		controlarAbas(3, 4);
		ajax('agenda_gerenciar_editar.php', 'div_3', strPost, 0, true, '', '');
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function agendaEditar(form){
		if(validacao(form)){
		//if(checarDestaque(form, 'op_ins')){
			var doc = eval('document.'+form); 
			doc.action = "agenda_gerenciar_editar_script.php";
			organizarAlert('agenda_gerenciar.php',false);
			limparGlobais();
			return true;
		//}
	}
	return false;
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function agendaExcluir(form){
	if(validacao(form)){
			var strPost = '';
			strPost = strPost + 'idexc='+url_encode(arraux[5]);
			ajax('agenda_gerenciar_excluir_script.php', '', strPost, 1, false, 25000, 'agenda_gerenciar.php');
	}
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=



















/*













function noticiaInserir(form){
	if(validacao(form)){
		//if(checarDestaque(form, 'op_ins')){
			var doc = eval('document.'+form);
			doc.action = "noticia_gerenciar_inserir_script.php";
			organizarAlert('noticia_gerenciar.php',false);
			limparGlobais();
			return true;
		//}
	}
	return false;
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function noticiaBuscar(form){
	if(validacao(form)){
		var strPost = '';
		strPost = strPost + 'titulo='+url_encode($("#titulo_bus").attr("value"));
		strPost = strPost + '&data_ini='+url_encode($("#data_ini_bus").attr("value"));
		strPost = strPost + '&data_fim='+url_encode($("#data_fim_bus").attr("value"));
		strPost = strPost + '&chamada='+url_encode($("#chamada_bus").attr("value"));
		strPost = strPost + '&texto='+url_encode($("#texto_bus").attr("value"));
		strPost = strPost + '&opdt='+url_encode($("#opdt_bus").attr("value"));

		limparGlobais();
		controlarAbas(2, 4);

		ajax('noticia_gerenciar_buscar_part1.php', 'div_2', strPost, 0, true, '', '');
	}
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function noticiaSelecionar(id, form){
		var strPost = '';
		strPost = strPost + 'id='+id;
		
		limparGlobais();
		controlarAbas(3, 4);
		ajax('noticia_gerenciar_editar.php', 'div_3', strPost, 0, true, '', '');
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function noticiaEditar(form){
		if(validacao(form)){
		//if(checarDestaque(form, 'op_ins')){
			var doc = eval('document.'+form); 
			doc.action = "noticia_gerenciar_editar_script.php";
			organizarAlert('noticia_gerenciar.php',false);
			limparGlobais();
			return true;
		//}
	}
	return false;
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function noticiaExcluir(form){
	if(validacao(form)){
			var strPost = '';
			strPost = strPost + 'idexc='+url_encode(arraux[5]);
			ajax('noticia_gerenciar_excluir_script.php', '', strPost, 1, false, 25000, 'noticia_gerenciar.php');
	}
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function agendaInserir(form){
	if(validacao(form)){
		//if(checarDestaque(form, 'op_ins')){
			var doc = eval('document.'+form);
			doc.action = "agenda_gerenciar_inserir_script.php";
			organizarAlert('agenda_gerenciar.php',false);
			limparGlobais();
			return true;
		//}
	}
	return false;
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function agendaBuscar(form){
	if(validacao(form)){
		var strPost = '';
		strPost = strPost + '&data_ini='+url_encode($("#data_ini_bus").attr("value"));
		strPost = strPost + '&data_fim='+url_encode($("#data_fim_bus").attr("value"));
		strPost = strPost + '&descricao='+url_encode($("#descricao_bus").attr("value"));
		strPost = strPost + '&local='+url_encode($("#local_bus").attr("value"));
		strPost = strPost + '&opdt='+url_encode($("#opdt_bus").attr("value"));

		limparGlobais();
		controlarAbas(2, 4);

		ajax('agenda_gerenciar_buscar_part1.php', 'div_2', strPost, 0, true, '', '');
	}
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function agendaSelecionar(id, form){
		var strPost = '';
		strPost = strPost + 'id='+id;
		
		limparGlobais();
		controlarAbas(3, 4);
		ajax('agenda_gerenciar_editar.php', 'div_3', strPost, 0, true, '', '');
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function agendaEditar(form){
		if(validacao(form)){
		//if(checarDestaque(form, 'op_ins')){
			var doc = eval('document.'+form); 
			doc.action = "agenda_gerenciar_editar_script.php";
			organizarAlert('agenda_gerenciar.php',false);
			limparGlobais();
			return true;
		//}
	}
	return false;
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function agendaExcluir(form){
	if(validacao(form)){
			var strPost = '';
			strPost = strPost + 'idexc='+url_encode(arraux[5]);
			ajax('agenda_gerenciar_excluir_script.php', '', strPost, 1, false, 25000, 'agenda_gerenciar.php');
	}
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function atividadeInserir(form){
	if(validacao(form)){
		//if(checarDestaque(form, 'op_ins')){
			var doc = eval('document.'+form);
			doc.action = "atividade_gerenciar_inserir_script.php";
			organizarAlert('atividade_gerenciar.php',false);
			limparGlobais();
			return true;
		//}
	}
	return false;
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function atividadeBuscar(form){
	if(validacao(form)){
		var strPost = '';
		strPost = strPost + 'titulo='+url_encode($("#titulo_bus").attr("value"));
		strPost = strPost + '&categoria='+url_encode($("#categoria_bus").attr("value"));
		strPost = strPost + '&texto='+url_encode($("#texto_bus").attr("value"));
		limparGlobais();
		controlarAbas(2, 4);

		ajax('atividade_gerenciar_buscar_part1.php', 'div_2', strPost, 0, true, '', '');
	}
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function atividadeSelecionar(id, form){
		var strPost = '';
		strPost = strPost + 'id='+id;
		
		limparGlobais();
		controlarAbas(3, 4);
		ajax('atividade_gerenciar_editar.php', 'div_3', strPost, 0, true, '', '');
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function atividadeEditar(form){
		if(validacao(form)){
		//if(checarDestaque(form, 'op_ins')){
			var doc = eval('document.'+form); 
			doc.action = "atividade_gerenciar_editar_script.php";
			organizarAlert('atividade_gerenciar.php',false);
			limparGlobais();
			return true;
		//}
	}
	return false;
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function atividadeExcluir(form){
	if(validacao(form)){
			var strPost = '';
			strPost = strPost + 'idexc='+url_encode(arraux[5]);
			ajax('atividade_gerenciar_excluir_script.php', '', strPost, 1, false, 25000, 'atividade_gerenciar.php');
	}
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function enqueteInserir(form){
	if(validacao(form)){
		//if(checarDestaque(form, 'op_ins')){
			var doc = eval('document.'+form);
			doc.action = "enquete_gerenciar_inserir_script.php";
			organizarAlert('enquete_gerenciar.php',false);
			limparGlobais();
			return true;
		//}
	}
	return false;
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function enqueteBuscar(form){
	if(validacao(form)){
		var strPost = '';
		strPost = strPost + 'pergunta='+url_encode($("#pergunta_bus").attr("value"));
		limparGlobais();
		controlarAbas(2, 4);

		ajax('enquete_gerenciar_buscar_part1.php', 'div_2', strPost, 0, true, '', '');
	}
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function enqueteSelecionar(id, form){
		var strPost = '';
		strPost = strPost + 'id='+id;
		
		limparGlobais();
		controlarAbas(3, 4);
		ajax('enquete_gerenciar_editar.php', 'div_3', strPost, 0, true, '', '');
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function enqueteEditar(form){
		if(validacao(form)){
		//if(checarDestaque(form, 'op_ins')){
			var doc = eval('document.'+form); 
			doc.action = "enquete_gerenciar_editar_script.php";
			organizarAlert('enquete_gerenciar.php',false);
			limparGlobais();
			return true;
		//}
	}
	return false;
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function enqueteExcluir(form){
	if(validacao(form)){
			var strPost = '';
			strPost = strPost + 'idexc='+url_encode(arraux[5]);
			ajax('enquete_gerenciar_excluir_script.php', '', strPost, 1, false, 25000, 'enquete_gerenciar.php');
	}
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=





























//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
/**
function validarLembrar(form, tipo){
	var doc = eval('document.'+form); 
	if(doc.login.value == ''){
		alert('Informe o usuário.');
		doc.login.focus();
		return false;
	}
	if(tipo == 'usu'){
		doc.action = "lembrar_usuario.php";	
	}else{
		doc.action = "admin/lembrar_cliente.php";			
	}
	doc.submit();
	return true;
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function verificarSenha(form, elem, suf){
	if(elem.value == ""){
		 document.getElementById("e"+elem.id).style.display = "block";
		 document.getElementById("e"+elem.id).innerHTML = "Campo de preenchimento obrigatorio.";
	}else{
	 	document.getElementById("e"+elem.id).style.display = "block";
		document.getElementById("e"+elem.id).innerHTML = "Aguarde...";
		strPost = 'senha='+url_encode(elem.value);
		atualizarDiv('e'+elem.id,strPost,'senha_verificar.php','ajax_padrao');
	}
}
//=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
function auxVerificarSenha(form, suf){
	if(document.getElementById("eatual"+suf).innerHTML.lastIndexOf("conf=\"ok\"") == -1){
		validacao(form);
		return false;
	}
	return true;
}
**/