function showPopup(base_url,country_code,year) {
	$('#popup').load(base_url+'index.php/home/popup_jury/'+year+'/'+country_code);
	
	var $width = 350;
	var $height = 350;
	var $left = (screen.availWidth/2 )- ($width/2) - 50;
	//var $top = (screen.availHeight/2 )- ($height/2) - 50;
	var $top = 130;
	$('#popup').css('top',$top);
	$('#popup').css('left',$left);
	$('#popup').fadeIn('slow');
	$('#dark').fadeIn('slow');
	//$('html').css('overflow','hidden');
	//$('#dark').css('display','block');//$('html').css('width')

	return;
}

function fecharPopup() {
	$('#popup').fadeOut('slow');
	$('#dark').fadeOut('slow');
	$('#popup').html('');
}
                 
                 
function showPopupLarge(base_url,footerId) {
    $('#popup').load(base_url+'index.php/home/home_footer/'+footerId);
    
    var $width = 600;
    var $height = 450;
    var $left = (screen.availWidth/2 )- ($width/2) - 50;
    var $top = (screen.availHeight/2 )- ($height/2) - 50;
    $('#popup').css('top',$top);
    $('#popup').css('left',$left);
    $('#popup').fadeIn('slow');
    $('#dark').fadeIn('slow');
    //$('html').css('overflow','hidden');
    //$('#dark').css('display','block');//$('html').css('width')

    return;
}

function showPopupFlash(base_url,year, width, height) {
	$('#popup').load(base_url+'index.php/home/popup_flash/'+year);
	
	var $width = width;
	var $height = height;
	var $left = (screen.availWidth/2 )- ($width/2) - 50;
	var $top = (screen.availHeight/2 )- ($height/2) - 50;
	$('#popup').css('top',$top);
	$('#popup').css('left',$left);
	$('#popup').fadeIn('slow');
	$('#dark').fadeIn('slow');
	//$('html').css('overflow','hidden');
	//$('#dark').css('display','block');//$('html').css('width')

	return;
}
