jQuery(document).ready(function(e){
BottomPopup_content() ;
jQuery("#bottom_popup_trigger").on( "click" , function(e){BottomPopup_toggle()} ) ;
jQuery("#bottom_popup_content").on( "mouseleave" , function(){BottomPopup_close()} ) ;
});
function BottomPopup_content()
{
var html = '' ;
html += '
'
+'FONDACO S.R.L. – codice fiscale 03124240270'
+'
' ;
var data = [] ;
// ROW 0 -> header
data.push( [ "Soggetto Erogante", "Somma Incassata", "Data Incasso", "Motivazione" ] ) ;
// ", "
data.push( [ "AGENZIA DELLE ENTRATE" , "7.524,00 euro" , "18/11/2020", "CONTRIBUTO DECRETO RILANCIO D.L. 25/2020" ] ) ;
data.push( [ "AGENZIA DELLE ENTRATE" , "1.1286,00 euro" , "26/11/2020", "DECRETO RISTORI E DECRETO RISTORI BIS D.L. 137/2020 ART1 - D.L. 149/2020 ART.2" ] ) ;
data.push( [ "COMUNE DI VENEZIA " , "1.4336,00 euro" , "16/12/2020", "ESONERO IMU ACCONTO + SALDO 2020 D.L. 104/2020 ART.78" ] ) ;
data.push( [ "AGENZIA DELLE ENTRATE" , "5.650,00 euro" , "22/01/2021", "CONTRIBUTO CENTRI STORICI D.L. 59/2020" ] ) ;
data.push( [ "AGENZIA DELLE ENTRATE" , "9.928,00 euro" , "09/04/2021", "CONTRIBUTO DECRETO SOSTEGNI D.L. 41/2021 ART.1" ] ) ;
data.push( [ "COMUNE DI VENEZIA " , "7.168,00 euro" , "16/06/2021", "ESONERO IMU ACCONTO 2021 D.L. 104/2020 ART.78" ] ) ;
data.push( [ "AGENZIA DELLE ENTRATE" , "9.928,00 euro" , "24/06/2021", "CONTRIBUTO AUTOMATICO SOSTEGNI D.L. 73/2021 ART.1" ] ) ;
data.push( [ "AGENZIA DELLE ENTRATE" , "4.000,00 euro" , "30/12/2021", "CONTRIBUTO AUTOMATICO SOSTEGNO AL TURISMO " ] ) ;
data.push( [ "AGENZIA DELLE ENTRATE" , "11.583,00 euro" , "31/12/2021", "DECRETO SOSTEGNI BIS - PEREQUATIVO D.L. 73/2021 ART.1" ] ) ;
data.push( [ "REGIONE VENETO " , "6.000,00 euro" , "25/05/2022", "INVESTIMENTI INNOVATIVI NEL SETTORE RICETTIVO TURISTICO " ] ) ;
html += '' ;
html += '' ;
jQuery("#bottom_popup_content").html(html);
}
function BottomPopup_toggle(){
var bp = jQuery("#bottom_popup") ;
var bpc = jQuery("#bottom_popup_content") ;
var pos = jQuery("#bottom_popup_trigger").position() ; ;
var fpos = parseInt( pos.top, 10 )-( parseInt( bpc.css("height"), 10 ) ) ;
bp.css( "top" ,(fpos)+"px" );
if( bp.css("display")=="none" ){ BottomPopup_open(); }
else{ BottomPopup_close() ; }
}
function BottomPopup_open(){ jQuery("#bottom_popup").fadeIn(); }
function BottomPopup_close(){ jQuery("#bottom_popup").fadeOut(); }