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('http://www.clickrb.com.br/album.php?codEvento='+id, 'Album', '650', '450');
}

function vEnquete(theURL)
{
	var win = (screen.width - 377) / 2;
	var props = 'left='+win+',top=0,width=377,height=190,scrollbars=1,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, 'Enquete', props);
}

function enquete(win)
{
	resultado=window.open('', win,  "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=377,height=190");
}

function imprimir(theURL,W,H)
{
	var win = (screen.width - W) / 2;
	
	var props = 'left='+win+', top=0, width='+W+', height='+H+', scrollbars=1, alwaysLowered=0, alwaysRaised=0, channelmode=0, dependent=0, directories=0, fullscreen=0, location=0, menubar=1, resizable=1, status=0, titlebar=1, toolbar=0';

	window.open(theURL, 'Imprimir', props);
}

$().ready(function()
{
	$("#eClick").html("<center><img src='imagens/load.gif'> <b>Carregando...</b></center>");
	
	$.ajax(
	{
		type: "GET",
		url: "ajax/parceiros.php",
		success: function(retorno)
		{ 
			$("#eClick").html(retorno);
		}
	});
});