function janela(theURL, Name, W, H)
{
	var win = (screen.width - W) / 2;
	var props = 'left='+win+',top=0,width='+W+',height='+H+',scrollbars=0,alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,status=0,titlebar=1,toolbar=0';

	window.open(theURL, Name, props);
}

function album(id)
{
	janela('album.php?codEvento='+id, 'Album', '650', '460');
}

function valida_busca()
{
	var txtBusca = $('#txtBusca').val();
	var txtCategoria = $('#txtCategoria').val();

	if( $.trim(txtBusca) == "" )
	{
		alert("Por favor, preencha o campo: Busca!");
		$('#txtBusca').focus();
	}
	else
	{
		document.location = txtCategoria +".php?opc=busca&txtBusca="+ txtBusca;
	}

	return false;
}

function seleciona_busca(campo)
{
	$("#txtCategoria").val(campo);
}

function carregando(id, msg)
{
	if( msg == 1 )
	{
		var txt = "<center><b>Aguarde...</b></center>";
	}
	else if( msg == 2 )
	{
		var txt = "<center><img src='imagens/load.gif'></center>";
	}
	else if( msg == 3 )
	{
		var txt = "<center><img src='imagens/load.gif'> <b>Carregando...</b></center>";
	}

	$(id).html(txt);
}

