// função para abrir popup
function popUp(url) {
	
	window.open(url,'_blank','toolbar=0,location=0,directories=0,copyhistory=0,status=1,menubar=0,scrollbars=0,resizable=0,width=120,height=90,left=100,top=100');

}

// função para popup - fotos SP6
function popUpFoto(foto) {
	
	var width = 720;
	var height = 525;
	var left = (screen.width-width)/2;
	var top = (screen.height-height)/2;
	
	window.open('/starparty_fotos/'+foto+'/','_blank','toolbar=0,location=0,directories=0,copyhistory=0,status=0,menubar=0,scrollbars=0,resizable=1,width='+width+',height='+height+',left='+left+',top='+top);

}

function doLoadPhotos(pag,mode) {
	
	new Ajax.History.Updater({ success: 'photoGal' }, '/_includes/starparty/fotos_list.php?pg='+pag, {
		history: {
            id: 'pg',
            state: pag,
			cache: false
        }, evalScripts: true,
		onCreate: function() {
			$('photoGal').hide();
			$('photoGalLoading').show();
			if (mode == 'nav') {
				Effect.ScrollTo('fotosTop');
			}
		}, onSuccess: function() {
			$('photoGalLoading').hide();
			$('photoGal').show();
		}, onFailure: function() {
			$('photoGalLoading').hide();
			$('photoGal').show();
		}
	});
	
}

