﻿// JavaScript Document

	function call(url,div) {

		if (window.XMLHttpRequest) { // Mozilla, Safari, ...

			xmlHttp = new XMLHttpRequest();

		} 

		else if (window.ActiveXObject) { // IE

			xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");

		}



		if (xmlHttp==null) {

			alert ("Erro na visualização dos dados devido ao navegador não ser compatível.")

			return

		} 



		xmlHttp.onreadystatechange=function() {

				if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") { 

					document.getElementById(div).innerHTML=xmlHttp.responseText 	// inserindo resposta na div

					}

				else

					{

					document.getElementById(div).innerHTML='<img src="imagem/aguarde.gif" />Carregando...';

					}

			}

		xmlHttp.open("GET",url,true)

		xmlHttp.send(null)

	}



	// funcao q busca dados da secao indicada conforme o tipo de busca solicitada (periodo ou ultimas)

	function busca_dados(busca,secao) {

		var periodo = '';

		if (busca=='ultimas')

					{ 

					//var periodo = document.getElementById('periodo').value; 

					call(secao+'_dados.php?periodo=','informacao');

					}

		else if (busca=='periodo')   

					{ 

					if(document.getElementById('periodo').value!="") {

						var periodo = document.getElementById('periodo').value; 

						call(secao+'_dados.php?periodo='+periodo,'informacao');

						}

					}

		else if (busca=='categoria')

					{

					if(document.getElementById('categoria').value!="") {

						var categ = document.getElementById('categoria').value; 

						call(secao+'_dados.php?categoria='+categ,'informacao');

						}

					}

		else if (busca=='colunista')

					{

					if(document.getElementById('colunista').value!="") {

						var colunista = document.getElementById('colunista').value; 

						call(secao+'_dados.php?colunista='+colunista,'informacao');

						}

					}

	}



	function verimg(nomeimg,tipo) {

			window.open('include/verimg.php?img='+nomeimg+'&tipo='+tipo,'imagem','scrollbars=no,toolbar=no,width=400,height=400')

			}



	function galeria(galeria) {

			window.open(galeria,'galeria','scrollbars=no,toolbar=no,width=900,height=600')

			}


	function radiocentral(radiocentral) {

			window.open(radiocentral,'radiocentral','scrollbars=no,toolbar=no,width=220,height=85')

			}


			

	function ver_foto(id_foto,diretorio) {

			call('galeriafotos_detalhes.php?acao=ver_foto&id='+id_foto+'&diretorio='+diretorio,'foto');

			}

			

	function procurar() {

		if(document.getElementById('txtprocurar').value.length<3)	

			{ 

			alert('O campo precisa ser preenchido com pelo menos 3 caracteres');

			return false;

			}

		else

			{

			/*

			string = document.getElementById('txtprocurar').value;

			window.location='?url=procurar.php&acao=procurar&procurar='+string;

			*/

			//document.formprocurar.submit();

			return true;

			}

	}

